test-forgejo-runner/.forgejo/workflows/demo.yaml
Julien Oculi aec2243412
Some checks failed
UiNamed workflow / test (push) Failing after 3s
try alpine and install git manually
2024-06-25 16:30:36 +02:00

34 lines
535 B
YAML

name: UiNamed workflow
on:
push:
branches: ["main"]
jobs:
test:
runs-on: docker
container:
image: alpine
steps:
- name: See empty repo
run: ls -lah
- name: See Path
run: echo $PATH
- name: Install git
run: apk add git
- name: See git version
run: git -v
- name: Setup repo
uses: actions/checkout@v4
- name: Check repo
run: ls -lah
- name: Test secrets
run: echo ${{ secrets.SSH_Key_sample }}