diff options
author | Daniel Baumann <daniel@debian.org> | 2025-01-24 09:00:09 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2025-01-24 09:00:09 +0100 |
commit | 4bf4dabd48aa70da3699b9a023f22689645d24f4 (patch) | |
tree | ed8175444649e71c0ed0e5f1d30101786ca2473e /pkg/runner/testdata/nix-prepend-path/push.yml | |
parent | Initial commit. (diff) | |
download | forgejo-act-debian.tar.xz forgejo-act-debian.zip |
Adding upstream version 1.24.0.HEADupstream/1.24.0upstreamdebian
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'pkg/runner/testdata/nix-prepend-path/push.yml')
-rw-r--r-- | pkg/runner/testdata/nix-prepend-path/push.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pkg/runner/testdata/nix-prepend-path/push.yml b/pkg/runner/testdata/nix-prepend-path/push.yml new file mode 100644 index 0000000..71fd5bc --- /dev/null +++ b/pkg/runner/testdata/nix-prepend-path/push.yml @@ -0,0 +1,26 @@ +on:
+ push:
+defaults:
+ run:
+ shell: sh
+jobs:
+ test:
+ runs-on: self-hosted
+ steps:
+ - run: |
+ mkdir build
+ echo '#!/usr/bin/env sh' > build/testtool
+ echo 'echo Hi' >> build/testtool
+ chmod +x build/testtool
+ - run: |
+ echo '${{ tojson(runner) }}'
+ ls
+ echo '${{ github.workspace }}'
+ working-directory: ${{ github.workspace }}/build
+ - run: |
+ echo "$GITHUB_PATH"
+ echo '${{ github.workspace }}/build' > "$GITHUB_PATH"
+ cat "$GITHUB_PATH"
+ - run: |
+ echo "$PATH"
+ testtool
|