我设法在 1 个私有存储库上创建了两个操作:
- 第一个构建镜像并将 docker 镜像推送到 GitHub Container Registry
- 第二个需要在更新的镜像发布到 GitHub 容器注册表并部署镜像时触发
问题是第二个它没有被触发并且没有运行。我使用 GitHub Repo Token,我发现这表明应该使用个人访问令牌来触发新的工作流程。这是真正的问题还是有一些解决方法?就我个人而言,我不想把我的 github 令牌放在那里。
作为参考这里是第一个 github 操作的 yml 代码:
name: Build Docker Image
on:
push:
branches:
- feature/ver-64/service-template
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=sha
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to Github Container Repository
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
这是第二个的 yml,一旦第一个将新图像发布到注册表,就需要触发它:
name: Deploy to Azure
on:
registry_package:
types: [ published, updated ]
jobs:
debug:
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2