Skip to content

Update report

Update report #601

Workflow file for this run

name: Delete Artifacts
on: [push, workflow_dispatch]
jobs:
job1:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo hello > world.txt
- uses: actions/upload-artifact@v1
with:
name: my-artifact
path: world.txt
# delete-artifact
- uses: geekyeggo/delete-artifact@v1
with:
name: my-artifact