Files
unicorn/.github/workflows/attach-release.yml
Amarachi Omereife 1513b8c191 workflw
2023-10-17 20:26:58 +01:00

27 lines
567 B
YAML

name: Attach Release Artifacts
on:
release:
types:
- released
workflow_dispatch:
jobs:
download-artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: create artifacts directory
run: mkdir artifact
working-directory: ./
- uses: dawidd6/action-download-artifact@v2
with:
workflow: build-uc2.yml
workflow_conclusion:
path: artifact
- name: Display structure of downloaded files
run: ls -R
working-directory: artifact