diff options
author | Paolo Asperti <[email protected]> | 2022-07-21 17:27:02 +0200 |
---|---|---|
committer | Paolo Asperti <[email protected]> | 2022-07-21 17:27:02 +0200 |
commit | 269f2fe0ebfdc35f70733d70ee98bfcd1768b400 (patch) | |
tree | 861d20706b33a1aa38197e20f42321a9a2b0bd02 /.github/workflows | |
parent | 2d385d88d3769267b9a1011cb877be072202b623 (diff) | |
download | rustdesk-server-269f2fe0ebfdc35f70733d70ee98bfcd1768b400.tar.gz rustdesk-server-269f2fe0ebfdc35f70733d70ee98bfcd1768b400.zip |
fix github action on manual build
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 06c8dd7..a9570f2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -210,8 +210,10 @@ jobs: echo "MAJOR_TAG=$M" >> $GITHUB_ENV # manifest for :1.2.3 tag + # this has to run only if invoked by a new tag - name: Create and push manifest (:ve.rs.ion) uses: Noelware/docker-manifest-action@master + if: github.event_name != 'workflow_dispatch' with: base-image: ${{ secrets.DOCKER_IMAGE }}:${{ env.GIT_TAG }} extra-images: ${{ secrets.DOCKER_IMAGE }}:${{ env.GIT_TAG }}-amd64,${{ secrets.DOCKER_IMAGE }}:${{ env.GIT_TAG }}-arm64v8,${{ secrets.DOCKER_IMAGE }}:${{ env.GIT_TAG }}-armv7,${{ secrets.DOCKER_IMAGE }}:${{ env.GIT_TAG }}-i386 |