Skip to content

Commit e163721

Browse files
authored
Merge pull request mutagen-io#519 from mutagen-io/v018-development
ci: fix push condition for sidecar image
2 parents 9cb311b + bf06a93 commit e163721

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
- uses: docker/setup-qemu-action@v3
132132
- uses: docker/setup-buildx-action@v3
133133
- uses: docker/login-action@v3
134-
if: github.ref_type == 'tag' && github.action_repository == 'mutagen-io/mutagen'
134+
if: github.ref_type == 'tag' && github.repository == 'mutagen-io/mutagen'
135135
with:
136136
username: ${{ secrets.SIDECAR_DEPLOYMENT_USER }}
137137
password: ${{ secrets.SIDECAR_DEPLOYMENT_TOKEN }}
@@ -143,7 +143,7 @@ jobs:
143143
file: images/sidecar/linux/Dockerfile
144144
target: mit
145145
tags: ${{ steps.tag.outputs.tag }}
146-
push: ${{ github.ref_type == 'tag' && github.action_repository == 'mutagen-io/mutagen' }}
146+
push: ${{ github.ref_type == 'tag' && github.repository == 'mutagen-io/mutagen' }}
147147
platforms: |
148148
linux/386
149149
linux/amd64
@@ -156,7 +156,7 @@ jobs:
156156
file: images/sidecar/linux/Dockerfile
157157
target: sspl
158158
tags: ${{ steps.tag.outputs.tag }}-sspl
159-
push: ${{ github.ref_type == 'tag' && github.action_repository == 'mutagen-io/mutagen' }}
159+
push: ${{ github.ref_type == 'tag' && github.repository == 'mutagen-io/mutagen' }}
160160
platforms: |
161161
linux/386
162162
linux/amd64

pkg/mutagen/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const (
1919
// VersionTag represents a tag to be appended to the Mutagen version string.
2020
// It must not contain spaces. If empty, no tag is appended to the version
2121
// string.
22-
VersionTag = "rc2"
22+
VersionTag = "rc3"
2323
)
2424

2525
// DevelopmentModeEnabled indicates that development mode is active. This is

0 commit comments

Comments
 (0)