diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e9c6f7..f79a5de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,7 @@ jobs: build: name: Build for ${{ matrix.target }} + needs: test runs-on: ubuntu-latest strategy: matrix: @@ -55,30 +56,3 @@ jobs: with: name: ${{ matrix.target }} path: target/${{ matrix.target }}/release/ - release: - name: Release - runs-on: ubuntu-latest - needs: build - steps: - - uses: actions/download-artifact@v2 - with: - name: ${{ matrix.target }} - path: target/${{ matrix.target }}/release/ - - name: Create Release - id: create_release - uses: actions/create-release@v1 - with: - tag_name: v1.0.0 - release_name: Release ${{ matrix.target }} - body: | - Changes in this Release - draft: false - prerelease: false - - name: Upload Release Asset - id: upload-release-asset - uses: actions/upload-release-asset@v1 - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: target/${{ matrix.target }}/release/ - asset_name: my-binary-${{ matrix.target }} - asset_content_type: application/octet-stream \ No newline at end of file