Skip to content

Commit

Permalink
Merge pull request #519 from mutagen-io/v018-development
Browse files Browse the repository at this point in the history
ci: fix push condition for sidecar image
  • Loading branch information
xenoscopic authored Oct 23, 2024
2 parents 9cb311b + bf06a93 commit e163721
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pkg/mutagen/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e163721

Please sign in to comment.