From e5a600cf2d214861aaf3e1bda354879820d8acd8 Mon Sep 17 00:00:00 2001 From: galargh Date: Tue, 30 Jan 2024 20:25:23 +0000 Subject: [PATCH] Test --- .github/workflows/playground.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playground.yml b/.github/workflows/playground.yml index 4246f60..4478613 100644 --- a/.github/workflows/playground.yml +++ b/.github/workflows/playground.yml @@ -8,5 +8,14 @@ jobs: name: Play runs-on: ["self-hosted", "linux", "x64", "large"] steps: - - run: echo "Hello, world!" + - run: echo "Hello, world!" > hello.txt + shell: bash + - uses: ipdxco/custom-github-runners/.github/actions/upload-artifact@main + with: + source: remote.txt + - uses: ipdxco/custom-github-runners/.github/actions/download-artifact@main + with: + source: remote.txt + destination: goodbye.txt + - run: cat goodbye.txt shell: bash