Add git setup for alpine
Some checks failed
/ build-image (push) Failing after 18s

This commit is contained in:
Peter Cai 2024-02-15 14:45:06 -05:00
parent d5b1dd1034
commit 76019f59df

View file

@ -6,14 +6,12 @@ jobs:
container:
image: node:18-alpine
steps:
- name: Repository Checkout
uses: https://gitea.angry.im/actions/checkout@v3
with:
submodules: recursive
- name: Install packages
run: |
apk add git podman
- name: Setup podman
run: |
apk add podman
podman login gitea.angry.im --username PeterCxy --password ${{ secrets.FORGEJO_TOKEN }}
- name: Fixup subuid/subgid
@ -21,6 +19,11 @@ jobs:
echo 'root:1:999' > /etc/subuid
echo 'root:1:999' > /etc/subgid
- name: Repository Checkout
uses: https://gitea.angry.im/actions/checkout@v3
with:
submodules: recursive
- name: Confirm Podman works
run: podman run --rm hello-world