Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DoormatIka authored Feb 26, 2024
1 parent 0e404f0 commit 29210f2
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,6 @@ jobs:
env:
GIT_COMMITTER_NAME: github-actions
GIT_COMMITTER_EMAIL: [email protected]


- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
with:
tag_name: ${{ steps.create_tag.outputs.version }}
release_name: Release ${{ steps.create_tag.outputs.version }}
draft: false
prerelease: true


- name: Release Binary
shell: bash
Expand All @@ -94,4 +81,16 @@ jobs:

# Move the built binary where you want it
mv "${BIN_OUTPUT}" "./bin/${BIN_RELEASE}"


- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
with:
tag_name: ${{ steps.create_tag.outputs.version }}
release_name: Release ${{ steps.create_tag.outputs.version }}
draft: false
prerelease: true

0 comments on commit 29210f2

Please sign in to comment.