add publish_release job
This commit is contained in:
parent
3de1dbed0b
commit
6f9c3a1389
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
@ -15,3 +15,15 @@ jobs:
|
|||||||
uses: ./.github/workflows/macos.yml
|
uses: ./.github/workflows/macos.yml
|
||||||
build_windows:
|
build_windows:
|
||||||
uses: ./.github/workflows/windows.yml
|
uses: ./.github/workflows/windows.yml
|
||||||
|
publish_release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [build_linux, build_macos, build_windows]
|
||||||
|
steps:
|
||||||
|
- name: Download Build Artifact
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: ./artifacts
|
||||||
|
- name: Show Artifacts
|
||||||
|
run: |
|
||||||
|
ls ./artifacts
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user