Nulah.PowerShell/.forgejo/workflows/demo.yaml
Scott c8860ea0c0
Some checks failed
/ checkout (push) Successful in 8s
/ dotnet (push) Failing after 2s
feat(action): break everything by splitting it into stages
2026-09-08 16:53:05 +10:00

27 lines
798 B
YAML

on: [push]
jobs:
# test:
# runs-on: docker
# steps:
# - run: echo All good!
checkout:
runs-on: docker
steps:
- id: checkout
uses: actions/checkout@v7
with:
repository: "pascal_nulah/Nulah.PowerShell"
ref: "feature/forgejo-runner-and-actions"
github-server-url: "https://git.moar.ws/"
dotnet:
runs-on: dotnet
steps:
- name: list directory contents
run: ls ./.forgejo/dotnet-build -la
- id: why_not_use_the_action_we_just_verified_exists_from_above
uses: ./.forgejo/dotnet-build
# - id: dotnet-build
# uses: ./.forgejo/dotnet-build/action.yml'
# # with:
# # input-two-required: "two"
# - run: test "${{ steps.dotnet-build.outputs.key }}" = "two"