attach-release
This commit is contained in:
parent
d4b92485b1
commit
a5f7059a34
27
.github/workflows/attach-release.yml
vendored
Normal file
27
.github/workflows/attach-release.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
name: Attach Release Artifacts
|
||||
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- released
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user