Add windows exe to the continuous release

This commit is contained in:
Dmitri Bogomolov 2021-06-29 15:12:35 +03:00
parent 3b8cba0097
commit d9433e408f
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -20,5 +20,17 @@ jobs:
build-essential libcap-dev libssl-dev python-all-dev \
wine-stable winetricks wine32 wine64 mingw-w64 xvfb
- name: Build
id: build
run: |
xvfb-run i386 buildscripts/winbuild.sh
echo "::set-output name=asset_path::packages/pyinstaller/dist/*.exe"
- name: Release Continuous
if: ${{ github.ref == 'refs/heads/ci' }}
uses: softprops/action-gh-release@master
with:
prerelease: true
tag_name: continuous
target_commitish: ${{ github.sha }}
files: ${{ steps.build.outputs.asset_path }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}