action-probe #86
1 changed files with 20 additions and 0 deletions
20
.forgejo/workflows/test-action.yml
Normal file
20
.forgejo/workflows/test-action.yml
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue