Files
unicorn/.github/workflows/attach-release.yml
Amarachi Omereife efc9d9ad8e workflow dispatch
2023-10-15 12:38:02 +01:00

27 lines
469 B
YAML

name: Attach Release Artifacts
on:
release:
types:
- released
workflow_dispatch:
jobs:
download-artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: my-artifact
path: artifacts
- name: Display structure of downloaded files
run: ls -R
working-directory: artifacts