From 51cb6dfa428c66647e29f945626659f70dbfb0d9 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Mon, 14 Nov 2022 20:33:06 -0700 Subject: [PATCH] ci(release): fix wrong directory name --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cf6eadd..d46cb96 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -38,8 +38,8 @@ jobs: - name: Create checksum and add to changelog run: | - SUM=`cd build && sha256sum wings_linux_amd64` - SUM2=`cd build && sha256sum wings_linux_arm64` + SUM=`cd dist && sha256sum wings_linux_amd64` + SUM2=`cd dist && sha256sum wings_linux_arm64` echo -e "\n#### SHA256 Checksum\n\`\`\`\n$SUM\n$SUM2\n\`\`\`\n" >> ./RELEASE_CHANGELOG echo -e "$SUM\n$SUM2" > checksums.txt @@ -75,7 +75,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: build/wings_linux_amd64 + asset_path: dist/wings_linux_amd64 asset_name: wings_linux_amd64 asset_content_type: application/octet-stream @@ -85,7 +85,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: build/wings_linux_arm64 + asset_path: dist/wings_linux_arm64 asset_name: wings_linux_arm64 asset_content_type: application/octet-stream