Browse Source
Fix for nightly release (#853)
* fix: removed commas in tag name
* removed `all_tags` from workflow
pull/856/head
Dan Ditomaso
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
4 deletions
-
.github/workflows/nightly.yml
|
|
|
@ -77,9 +77,8 @@ jobs: |
|
|
|
fi |
|
|
|
|
|
|
|
# Outputs |
|
|
|
echo "immutable_tag=${IMMUTABLE}" >> "$GITHUB_OUTPUT" |
|
|
|
echo "moving_tag=nightly" >> "$GITHUB_OUTPUT" |
|
|
|
echo "all_tags=nightly,${IMMUTABLE}" >> "$GITHUB_OUTPUT" |
|
|
|
echo "immutable_tag=${IMMUTABLE}" >> "$GITHUB_OUTPUT" |
|
|
|
echo "created=${ISO_CREATED}" >> "$GITHUB_OUTPUT" |
|
|
|
echo "Resolved tags: nightly and ${IMMUTABLE}" |
|
|
|
|
|
|
|
@ -93,7 +92,9 @@ jobs: |
|
|
|
containerfiles: | |
|
|
|
./packages/web/infra/Containerfile |
|
|
|
image: ${{ env.REGISTRY_IMAGE }} |
|
|
|
tags: ${{ steps.meta.outputs.all_tags }} |
|
|
|
tags: | |
|
|
|
${{ steps.meta.outputs.moving_tag }} |
|
|
|
${{ steps.meta.outputs.immutable_tag }} |
|
|
|
oci: true |
|
|
|
platforms: linux/amd64,linux/arm64 |
|
|
|
labels: | |
|
|
|
|