From 06a687dadcf0fb2f846cd2bf91113c09d2f4dda2 Mon Sep 17 00:00:00 2001 From: Scott Date: Tue, 8 Sep 2026 17:17:55 +1000 Subject: [PATCH] feat(action): environment variable test --- .forgejo/workflows/demo.yaml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml index c1ee55b..0b643de 100644 --- a/.forgejo/workflows/demo.yaml +++ b/.forgejo/workflows/demo.yaml @@ -6,16 +6,10 @@ jobs: # - run: echo All good! checkout: runs-on: self-hosted + env: + test: value steps: - # runs-on: dotnet - # 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/" - name: list directory contents - run: ls -la - # - id: why_not_use_the_action_we_just_verified_exists_from_above - # uses: ./.forgejo/dotnet-build + run: | + ls -la + echo ${{ env.test }}