add publish_release job
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user