Start preparing release build generation

This commit is contained in:
John Harker 2020-06-08 21:35:47 +01:00 committed by GitHub
parent d8fb77b97d
commit a75fe63254
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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