Start preparing release build generation
This commit is contained in:
parent
d8fb77b97d
commit
a75fe63254
1 changed files with 18 additions and 0 deletions
18
.github/workflows/main.yml
vendored
18
.github/workflows/main.yml
vendored
|
@ -93,3 +93,21 @@ jobs:
|
|||
# Artifact name
|
||||
# name: # optional
|
||||
path: ./out/**/*
|
||||
|
||||
generate-release:
|
||||
name: Execute Release
|
||||
runs-on: ubuntu-latest
|
||||
needs: [build-linux, build-darwin, build-windows]
|
||||
steps:
|
||||
-
|
||||
name: Prepare Release Directory
|
||||
run: mkdir ./release
|
||||
-
|
||||
name: Download a Build Artifact
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
# Destination path
|
||||
path: ./release # optional
|
||||
- name: Display structure of downloaded files
|
||||
run: ls -R
|
||||
working-directory: ./release
|
||||
|
|
Loading…
Reference in a new issue