Skip to content

Commit ffd51a6

Browse files
ci: fix container build
Signed-off-by: Henry Gressmann <[email protected]>
1 parent 7f4c580 commit ffd51a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/container.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
with:
22-
ref: ${{ github.event.inputs.tag }}
22+
ref: ${{ inputs.tag }}
2323
- name: Setup Docker Buildx
2424
uses: docker/setup-buildx-action@v3
2525
- name: Extract Semver
2626
id: semver
2727
run: |
28-
SEMVER_VERSION=$(echo "${{ github.event.inputs.tag }}" | sed -E 's/liwan-v//')
28+
SEMVER_VERSION=$(echo "${{ inputs.tag }}" | sed -E 's/liwan-v//')
2929
echo "SEMVER_VERSION=${SEMVER_VERSION}" >> "$GITHUB_OUTPUT"
3030
- name: Setup Docker Metadata
3131
uses: docker/metadata-action@v5
@@ -53,5 +53,5 @@ jobs:
5353
linux/amd64
5454
linux/arm64
5555
build-args: |
56-
TAR_URL_AMD64=https://github.com/explodingcamera/liwan/releases/download/${{ github.event.inputs.tag }}/liwan-x86_64-unknown-linux-musl.tar.gz
57-
TAR_URL_ARM64=https://github.com/explodingcamera/liwan/releases/download/${{ github.event.inputs.tag }}/liwan-aarch64-unknown-linux-musl.tar.gz
56+
TAR_URL_AMD64=https://github.com/explodingcamera/liwan/releases/download/${{ inputs.tag }}/liwan-x86_64-unknown-linux-musl.tar.gz
57+
TAR_URL_ARM64=https://github.com/explodingcamera/liwan/releases/download/${{ inputs.tag }}/liwan-aarch64-unknown-linux-musl.tar.gz

0 commit comments

Comments
 (0)