From caf708d7a253b05bc99283239b2533450eb4774e Mon Sep 17 00:00:00 2001 From: alpha-nerd Date: Mon, 18 May 2026 16:24:40 +0200 Subject: [PATCH] =?UTF-8?q?.forgejo/workflows/test-action.yml=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .forgejo/workflows/test-action.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .forgejo/workflows/test-action.yml diff --git a/.forgejo/workflows/test-action.yml b/.forgejo/workflows/test-action.yml new file mode 100644 index 0000000..e91b832 --- /dev/null +++ b/.forgejo/workflows/test-action.yml @@ -0,0 +1,20 @@ +name: artifact-probe +on: workflow_dispatch +jobs: + up: + runs-on: docker-amd64 + container: + image: node:lts-bookworm + steps: + - run: echo "hello" > /tmp/probe.txt + - uses: https://github.com/actions/upload-artifact@v4 + with: { name: probe, path: /tmp/probe.txt } + down: + needs: up + runs-on: docker-amd64 + container: + image: node:lts-bookworm + steps: + - uses: https://github.com/actions/download-artifact@v4 + with: { name: probe, path: /tmp/got } + - run: cat /tmp/got/probe.txt \ No newline at end of file