Files
unicorn/.github/workflows/attach-release.yml
Amarachi Omereife f9a1b49c2b refactor
2023-10-15 12:46:18 +01:00

26 lines
437 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:
path: artifacts
- name: Display structure of downloaded files
run: ls -R
working-directory: artifacts