Skip to content

Commit

Permalink
Update build-all-and-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
justinvforvendetta authored Jan 27, 2024
1 parent 0ebdc3b commit f877cd4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-all-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,17 @@ jobs:
*.txt
*.zip
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: true
prerelease: false

- name: upload linux artifact
uses: actions/upload-release-asset@v1
env:
Expand Down Expand Up @@ -157,6 +168,17 @@ jobs:
*.txt
*.zip
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: true
prerelease: false

- name: upload windows artifact
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit f877cd4

Please sign in to comment.