yin2haogithub-action使用docker-build-push-action-v6推送失败,提示401-Unauthorized解决 中发帖

这是我原本的 github workflow,构建 docker 镜像并推送到 dockerhub 
name: Publish frontend Docker image

on:
  push: tags:
      - '*'

permissions:
  contents: read

concurrency:
  group: docker-publish-${{github.repository}}-${{ github.ref }}
  cancel-in-progress: false

jobs:
  normalize-version:
    name: Validate and normalize tag
    runs-on: ubuntu-latest
    outputs:
      valid: ${{ steps.version.outputs....
 
 
Back to Top