From 8af39e58218a7a14e590b32e26abb793f7a07dd3 Mon Sep 17 00:00:00 2001 From: Patrick Hoefer Date: Sat, 19 Dec 2020 16:48:32 +0100 Subject: [PATCH] github(release): fix typo --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d323b8..37f5285 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,8 +59,8 @@ 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 @@ -68,8 +68,8 @@ 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 }}.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: @@ -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 @@ -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