chore: cleanup and bump workflow actions
This commit is contained in:
parent
f2a3582c77
commit
48c2dba554
3 changed files with 8 additions and 8 deletions
8
.github/workflows/docker.yml
vendored
8
.github/workflows/docker.yml
vendored
|
@ -9,8 +9,8 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
name: Build image
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
arch: [x86_64, aarch64]
|
||||
|
@ -32,7 +32,7 @@ jobs:
|
|||
echo "path=$(realpath result)" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Upload image
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: container-${{ matrix.arch }}
|
||||
path: ${{ steps.build.outputs.path }}
|
||||
|
@ -59,7 +59,7 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Download images
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: images
|
||||
|
||||
|
@ -74,7 +74,7 @@ jobs:
|
|||
env:
|
||||
TAG: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
|
||||
run: |
|
||||
set -eux
|
||||
set -eu
|
||||
|
||||
architectures=("x86_64" "aarch64")
|
||||
for arch in "${architectures[@]}"; do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue