Skip to content

Commit

Permalink
fix(ci): remove inner brackets (#3972)
Browse files Browse the repository at this point in the history
  • Loading branch information
PoisonPhang authored Mar 7, 2025
2 parents 62c08aa + a25b8a6 commit 162f6a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
ports:
- 5000:5000
steps:
- uses: docker/login-action@v2
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
echo "downloaded & installed regctl"
regctl registry set --tls disabled localhost:5000
regctl image mod "localhost:5000/unionlabs/$COMPONENT:$TAG" --to-oci --create "$TAG" --annotation org.opencontainers.image.description="$(cat "$GITHUB_WORKSPACE/.github/container-descriptions/$COMPONENT.txt")"
- uses: docker/login-action@v2
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
- uses: softprops/action-gh-release@v2
with:
body_path: release.md
prerelease: ${{ contains(${{needs.eval-tag.outputs.version}}, '-rc') || contains(${{needs.eval-tag.outputs.version}}, 'alpha') }}
prerelease: ${{ contains(needs.eval-tag.outputs.version, '-rc') || contains(needs.eval-tag.outputs.version, 'alpha') }}
repository: unionlabs/union
token: ${{ secrets.UNION_RELEASES_PAT }}
name: ${{needs.eval-tag.outputs.component}} ${{needs.eval-tag.outputs.version}}
Expand Down

1 comment on commit 162f6a4

@Mubakcrypt
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

awesome

Please sign in to comment.