We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 22308bc + 95301f1 commit 76681b0Copy full SHA for 76681b0
.github/workflows/docker.yml
@@ -29,13 +29,13 @@ jobs:
29
shell: pwsh
30
id: getversion
31
- name: Push to GitHub Packages - Nightly
32
- if: contains(github.ref, 'refs/head/vnext')
+ if: ${{ github.ref == 'refs/heads/vnext' }}
33
uses: docker/build-push-action@v3.0.0
34
with:
35
push: true
36
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:nightly
37
- name: Push to GitHub Packages - Release
38
- if: contains(github.ref, 'refs/head/master')
+ if: ${{ github.ref == 'refs/heads/master' }}
39
40
41
0 commit comments