nomyo-router/.forgejo/workflows/test-action.yml
alpha-nerd caf708d7a2
All checks were successful
PR Tests / test (pull_request) Successful in 1m3s
NYX Security Scan / nyx-scan (pull_request) Successful in 6m41s
.forgejo/workflows/test-action.yml hinzugefügt
2026-05-18 16:24:40 +02:00

20 lines
No EOL
541 B
YAML

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