Use alpine:latest image
This commit is contained in:
parent
bbcd6d7b94
commit
3ea484b8b3
1 changed files with 4 additions and 6 deletions
|
@ -11,12 +11,10 @@ jobs:
|
|||
name: Build tarball
|
||||
runs-on: x86_64
|
||||
container:
|
||||
image: alpinelinux/alpine-gitlab-ci:latest
|
||||
env:
|
||||
CI_PROJECT_NAME: zotero
|
||||
image: alpine:latest
|
||||
steps:
|
||||
- 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
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
|
@ -43,10 +41,10 @@ jobs:
|
|||
runs-on: x86_64
|
||||
needs: [build-tarball]
|
||||
container:
|
||||
image: alpinelinux/alpine-gitlab-ci:latest
|
||||
image: alpine:latest
|
||||
steps:
|
||||
- name: Environment setup
|
||||
run: doas apk add nodejs curl findutils
|
||||
run: apk add nodejs curl findutils
|
||||
- name: Package download
|
||||
uses: forgejo/download-artifact@v3
|
||||
- name: Package deployment
|
||||
|
|
Loading…
Reference in a new issue