Skip to content

Commit

Permalink
more release fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
3ll3d00d committed Dec 13, 2020
1 parent 36b93d7 commit d8db742
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/create-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-18.04, macos-10.15, windows-2019 ]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
Expand Down Expand Up @@ -81,10 +82,10 @@ jobs:
then
pushd dist
rm beqdesigner
zip -r beqdesigner.app.${{ matrix.os }}.zip beqdesigner.app
zip -r beqdesigner.app.zip beqdesigner.app
rm -Rf beqdesigner.app
popd
echo ::set-output name=binary_name::"dist/beqdesigner.app.${{ matrix.os }}.zip"
echo ::set-output name=binary_name::"dist/beqdesigner.app.zip"
echo ::set-output name=binary_content_type::"application/zip"
elif [[ "$RUNNER_OS" == "Windows" ]]
then
Expand All @@ -106,7 +107,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_name: beqdesigner-${{ matrix.config.os }}
asset_name: beqdesigner-${{ matrix.os }}
asset_path: ${{ steps.create_dist.outputs.binary_name }}
asset_content_type: ${{ steps.create_dist.outputs.binary_content_type }}
- name: Upload beqdesignerSetup
Expand Down

0 comments on commit d8db742

Please sign in to comment.