From 8bb0d460bf60acbb141e89b95c2252ca339fabee Mon Sep 17 00:00:00 2001 From: Jacob Howard Date: Tue, 22 Oct 2024 16:34:20 -0600 Subject: [PATCH 1/2] ci: fix push condition for sidecar image Signed-off-by: Jacob Howard --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db62568d..c9cbd990 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,7 +131,7 @@ jobs: - uses: docker/setup-qemu-action@v3 - uses: docker/setup-buildx-action@v3 - uses: docker/login-action@v3 - if: github.ref_type == 'tag' && github.action_repository == 'mutagen-io/mutagen' + if: github.ref_type == 'tag' && github.repository == 'mutagen-io/mutagen' with: username: ${{ secrets.SIDECAR_DEPLOYMENT_USER }} password: ${{ secrets.SIDECAR_DEPLOYMENT_TOKEN }} @@ -143,7 +143,7 @@ jobs: file: images/sidecar/linux/Dockerfile target: mit tags: ${{ steps.tag.outputs.tag }} - push: ${{ github.ref_type == 'tag' && github.action_repository == 'mutagen-io/mutagen' }} + push: ${{ github.ref_type == 'tag' && github.repository == 'mutagen-io/mutagen' }} platforms: | linux/386 linux/amd64 @@ -156,7 +156,7 @@ jobs: file: images/sidecar/linux/Dockerfile target: sspl tags: ${{ steps.tag.outputs.tag }}-sspl - push: ${{ github.ref_type == 'tag' && github.action_repository == 'mutagen-io/mutagen' }} + push: ${{ github.ref_type == 'tag' && github.repository == 'mutagen-io/mutagen' }} platforms: | linux/386 linux/amd64 From bf06a935658320708c81d658512c3c2aac1389aa Mon Sep 17 00:00:00 2001 From: Jacob Howard Date: Tue, 22 Oct 2024 16:36:35 -0600 Subject: [PATCH 2/2] all: bump version to v0.18.0-rc3 Signed-off-by: Jacob Howard --- pkg/mutagen/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/mutagen/version.go b/pkg/mutagen/version.go index 29f092d4..81fc131c 100644 --- a/pkg/mutagen/version.go +++ b/pkg/mutagen/version.go @@ -19,7 +19,7 @@ const ( // VersionTag represents a tag to be appended to the Mutagen version string. // It must not contain spaces. If empty, no tag is appended to the version // string. - VersionTag = "rc2" + VersionTag = "rc3" ) // DevelopmentModeEnabled indicates that development mode is active. This is