ci(forgejo): support alpine runner image
This commit is contained in:
parent
89ad45ac35
commit
4097d6a304
1 changed files with 8 additions and 3 deletions
|
|
@ -18,10 +18,15 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install Docker CLI
|
||||
- name: Install tooling
|
||||
run: |
|
||||
set -euo pipefail
|
||||
if command -v apt-get >/dev/null 2>&1; then
|
||||
apt-get update
|
||||
apt-get install -y docker.io git python3
|
||||
elif command -v apk >/dev/null 2>&1; then
|
||||
apk add --no-cache git python3 py3-pip
|
||||
fi
|
||||
|
||||
- name: Log in to registry
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue