We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a50764 commit 9b1c35cCopy full SHA for 9b1c35c
1 file changed
.github/workflows/docker.yml
@@ -32,13 +32,13 @@ jobs:
32
env:
33
BRANCH_NAME: ${{ github.ref }}
34
- name: Push to GitHub Packages - Nightly
35
- if: contains(github.ref, 'refs/head/main')
+ if: contains(github.ref, 'refs/head/vnext')
36
uses: docker/build-push-action@v3.0.0
37
with:
38
push: true
39
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:nightly
40
- name: Push to GitHub Packages - Release
41
- if: contains(github.ref, 'refs/tags/v')
+ if: contains(github.ref, 'refs/head/master')
42
43
44
0 commit comments