Skip to content

Commit 162f6a4

Browse files
authored
fix(ci): remove inner brackets (#3972)
2 parents 62c08aa + a25b8a6 commit 162f6a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-component.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
ports:
196196
- 5000:5000
197197
steps:
198-
- uses: docker/login-action@v2
198+
- uses: docker/login-action@v3
199199
with:
200200
registry: ghcr.io
201201
username: ${{ github.actor }}
@@ -265,7 +265,7 @@ jobs:
265265
echo "downloaded & installed regctl"
266266
regctl registry set --tls disabled localhost:5000
267267
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")"
268-
- uses: docker/login-action@v2
268+
- uses: docker/login-action@v3
269269
with:
270270
registry: ghcr.io
271271
username: ${{ github.actor }}
@@ -328,7 +328,7 @@ jobs:
328328
- uses: softprops/action-gh-release@v2
329329
with:
330330
body_path: release.md
331-
prerelease: ${{ contains(${{needs.eval-tag.outputs.version}}, '-rc') || contains(${{needs.eval-tag.outputs.version}}, 'alpha') }}
331+
prerelease: ${{ contains(needs.eval-tag.outputs.version, '-rc') || contains(needs.eval-tag.outputs.version, 'alpha') }}
332332
repository: unionlabs/union
333333
token: ${{ secrets.UNION_RELEASES_PAT }}
334334
name: ${{needs.eval-tag.outputs.component}} ${{needs.eval-tag.outputs.version}}

0 commit comments

Comments
 (0)