-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated workflow publish release with correct flag
- Loading branch information
1 parent
76c06fc
commit df3a5d9
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,11 +46,15 @@ jobs: | |
cp resourcepack/mcide.zip upload | ||
cp target/mcide*.jar upload | ||
- name: Get realease version from pom.xml | ||
id: get-version | ||
uses: jactions/[email protected] | ||
|
||
- name: Upload files to a GitHub release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: upload/* | ||
tag: latest | ||
tag: ${{ steps.get-version.outputs.version }} | ||
overwrite: true | ||
file_glob: true | ||
file_glob: true |