1
0
Fork 0

checkout repo by hand
/ test (push) Successful in 3s Details

This commit is contained in:
Michał Rudowicz 2025-02-25 12:05:24 +01:00
parent 0751836eba
commit 39469d6fe4
2 changed files with 8 additions and 2 deletions

View File

@ -8,4 +8,10 @@ jobs:
container: container:
image: git.hswro.org/fleg/actions-experiments:latest image: git.hswro.org/fleg/actions-experiments:latest
steps: steps:
- run: git version
- run: git init
- run: git remote add origin "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}"
- run: git fetch --no-tags --prune --no-recurse-submodules --depth=1 origin "+${GITHUB_SHA}:${GITHUB_REF}"
- run: git checkout --force "${GITHUB_REF}"
- run: cat README.md
- run: cat /etc/os-release - run: cat /etc/os-release

View File

@ -1,3 +1,3 @@
FROM alpine:3.20 FROM alpine:3.21
RUN apk add --update gcc g++ make openssl-dev libc-dev ruby ruby-dev ruby-bundler ruby-json RUN apk add --update git