diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2203490..4884a9f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -56,11 +56,21 @@ jobs: release: runs-on: ubuntu-latest + needs: [build-linux, build-windows] steps: - - name: Download artifacts + - name: Download windows artifact uses: actions/download-artifact@v3 + with: + name: 'hasherino-windows' + path: 'hasherino-windows.exe' + + - name: Download linux artifact + uses: actions/download-artifact@v3 + with: + name: 'hasherino-linux' + path: 'hasherino-linux' - name: Release uses: softprops/action-gh-release@v1 @@ -68,8 +78,6 @@ jobs: with: token: ${{ secrets.CUSTOM_GITHUB_TOKEN }} files: | - hasherino - hasherino.exe - - + hasherino-linux + hasherino-windows.exe