Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Rovel committed Feb 14, 2024
1 parent ef704d7 commit 94b6776
Showing 1 changed file with 1 addition and 27 deletions.
28 changes: 1 addition & 27 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:

build:
name: Build for ${{ matrix.target }}
needs: test
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -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

0 comments on commit 94b6776

Please sign in to comment.