File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ jobs:
131
131
- uses : docker/setup-qemu-action@v3
132
132
- uses : docker/setup-buildx-action@v3
133
133
- 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'
135
135
with :
136
136
username : ${{ secrets.SIDECAR_DEPLOYMENT_USER }}
137
137
password : ${{ secrets.SIDECAR_DEPLOYMENT_TOKEN }}
@@ -143,7 +143,7 @@ jobs:
143
143
file : images/sidecar/linux/Dockerfile
144
144
target : mit
145
145
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' }}
147
147
platforms : |
148
148
linux/386
149
149
linux/amd64
@@ -156,7 +156,7 @@ jobs:
156
156
file : images/sidecar/linux/Dockerfile
157
157
target : sspl
158
158
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' }}
160
160
platforms : |
161
161
linux/386
162
162
linux/amd64
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const (
19
19
// VersionTag represents a tag to be appended to the Mutagen version string.
20
20
// It must not contain spaces. If empty, no tag is appended to the version
21
21
// string.
22
- VersionTag = "rc2 "
22
+ VersionTag = "rc3 "
23
23
)
24
24
25
25
// DevelopmentModeEnabled indicates that development mode is active. This is
You can’t perform that action at this time.
0 commit comments