Skip to content

Commit

Permalink
Addin pre-release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Spinus1 committed Aug 19, 2021
1 parent 02deb6b commit ad59d5f
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: actions/upload-artifact@v2
with:
name: bpc
name: bpc.exe
path: src/dist/windows

build-linux:
Expand All @@ -40,3 +40,26 @@ jobs:
with:
name: bpc
path: src/dist/linux



pre-release:
name: "Pre Release"
runs-on: "ubuntu-latest"
needs: [build-windows, build-linux]
steps:
- uses: actions/download-artifact@v2
with:
name: bpc
- uses: actions/download-artifact@v2
with:
name: bpc.exe
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
bpc
bpc.exe

0 comments on commit ad59d5f

Please sign in to comment.