Skip to content

Commit

Permalink
github(release): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Hoefer committed Dec 19, 2020
1 parent 7d1d24e commit 8af39e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,17 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: distributions/ck3-workbench_${{ steps.latest_tag.output.tag }}-1_amd64.deb
asset_name: ck3-workbench_${{ steps.latest_tag.output.tag }}-1_amd64.deb
asset_path: distributions/ck3-workbench_${{ steps.latest_tag.outputs.tag }}-1_amd64.deb
asset_name: ck3-workbench_${{ steps.latest_tag.outputs.tag }}-1_amd64.deb
asset_content_type: application/zip
- name: Upload macOS Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: distributions/ck3-workbench-${{ steps.latest_tag.output.tag }}.dmg
asset_name: ck3-workbench-${{ steps.latest_tag.output.tag }}.dmg
asset_path: distributions/ck3-workbench-${{ steps.latest_tag.outputs.tag }}.dmg
asset_name: ck3-workbench-${{ steps.latest_tag.outputs.tag }}.dmg
asset_content_type: application/zip

debian_build:
Expand All @@ -93,7 +93,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: debian-distribution
path: ./build/compose/binaries/main/deb/ck3-workbench_${{ steps.latest_tag.output.tag }}-1_amd64.deb
path: ./build/compose/binaries/main/deb/ck3-workbench_${{ steps.latest_tag.outputs.tag }}-1_amd64.deb

macos_build:
needs: build
Expand All @@ -116,4 +116,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: macos-distribution
path: ./build/compose/binaries/main/dmg/ck3-workbench-${{ steps.latest_tag.output.tag }}.dmg
path: ./build/compose/binaries/main/dmg/ck3-workbench-${{ steps.latest_tag.outputs.tag }}.dmg

0 comments on commit 8af39e5

Please sign in to comment.