Attach Release
This commit is contained in:
24
.github/workflows/attach-release.yml
vendored
24
.github/workflows/attach-release.yml
vendored
@@ -7,33 +7,19 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
upload-artifacts:
|
download-artifacts:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out code
|
- uses: actions/checkout@v3
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Create artifacts directory
|
- name: create artifacts directory
|
||||||
run: mkdir artifacts
|
run: mkdir artifacts
|
||||||
working-directory: ./
|
working-directory: ./
|
||||||
|
|
||||||
- name: Upload all artifacts
|
- uses: actions/download-artifact@v3
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
with:
|
||||||
name: all-artifacts
|
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
download-artifacts:
|
|
||||||
needs: upload-artifacts
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Check out code
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Download all artifacts
|
|
||||||
uses: actions/download-artifact@v2
|
|
||||||
with:
|
|
||||||
name: all-artifacts
|
|
||||||
|
|
||||||
- name: Display structure of downloaded files
|
- name: Display structure of downloaded files
|
||||||
run: ls -R
|
run: ls -R
|
||||||
|
working-directory: artifacts
|
||||||
Reference in New Issue
Block a user