Skip to content

Commit

Permalink
fix: fix release upload
Browse files Browse the repository at this point in the history
  • Loading branch information
4o3F committed Oct 10, 2024
1 parent f155f55 commit ec1e93e
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,22 @@ jobs:
target/release/imagetools.exe
target/release/imagetools.pdb
retention-days: 14


release:
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Download packages
uses: actions/download-artifact@v3
with:
path: ~/release-binary
- name: Release
uses: softprops/action-gh-release@v2
with:
prerelease: true
name: Dev build
tag_name: "pre-release"
files: |
target/release/imagetools
target/release/imagetools.exe
target/release/imagetools.pdb
~/release-binary/imagetools*/*

0 comments on commit ec1e93e

Please sign in to comment.