Use alpine:latest image

This commit is contained in:
Antoine Martin 2024-09-09 12:38:39 +00:00
parent bbcd6d7b94
commit 3ea484b8b3

View file

@ -11,12 +11,10 @@ jobs:
name: Build tarball name: Build tarball
runs-on: x86_64 runs-on: x86_64
container: container:
image: alpinelinux/alpine-gitlab-ci:latest image: alpine:latest
env:
CI_PROJECT_NAME: zotero
steps: steps:
- name: Environment setup - name: Environment setup
run: doas apk add nodejs git xz gzip dotnet6-sdk run: apk add nodejs git xz gzip dotnet6-sdk sed
- name: Repo pull - name: Repo pull
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
@ -43,10 +41,10 @@ jobs:
runs-on: x86_64 runs-on: x86_64
needs: [build-tarball] needs: [build-tarball]
container: container:
image: alpinelinux/alpine-gitlab-ci:latest image: alpine:latest
steps: steps:
- name: Environment setup - name: Environment setup
run: doas apk add nodejs curl findutils run: apk add nodejs curl findutils
- name: Package download - name: Package download
uses: forgejo/download-artifact@v3 uses: forgejo/download-artifact@v3
- name: Package deployment - name: Package deployment