test-forgejo-runner/.forgejo/workflows/demo.yaml
julien.oculi aaf7bbcd81
Some checks failed
UiNamed workflow / test (push) Failing after 8s
Update .forgejo/workflows/demo.yaml
2025-02-22 01:00:05 +01:00

33 lines
709 B
YAML

name: UiNamed workflow
on:
push:
branches: ["main"]
jobs:
test:
runs-on: docker
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Check repo
run: ls -lah
- name: Test secrets
run: echo ${{ secrets.SSH_Key_sample }}
- name: Setup deno
run: curl -fsSL https://deno.land/install.sh | DENO_INSTALL=/usr/local sh
- name: Test set variable
id: build
run: deno eval "Promise.resolve().then(_ => JSON.stringify(Deno.build, null, '\n')).then(console.log)" >> "$GITHUB_OUTPUT"
- name: Test get variable
run: echo ${{ steps.build.outputs }}
- name: Test deno
run: deno --version