Skip to content

Commit 9b1c35c

Browse files
committed
- fixes branch filters for docker image release
1 parent 8a50764 commit 9b1c35c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
env:
3333
BRANCH_NAME: ${{ github.ref }}
3434
- name: Push to GitHub Packages - Nightly
35-
if: contains(github.ref, 'refs/head/main')
35+
if: contains(github.ref, 'refs/head/vnext')
3636
uses: docker/build-push-action@v3.0.0
3737
with:
3838
push: true
3939
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:nightly
4040
- name: Push to GitHub Packages - Release
41-
if: contains(github.ref, 'refs/tags/v')
41+
if: contains(github.ref, 'refs/head/master')
4242
uses: docker/build-push-action@v3.0.0
4343
with:
4444
push: true

0 commit comments

Comments
 (0)