Skip to content

Commit

Permalink
change release action
Browse files Browse the repository at this point in the history
  • Loading branch information
dashaun committed May 23, 2023
1 parent 5ef6d33 commit 1d460d7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/tagged-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@ jobs:
- name: Build Image
run: ./mvnw -Pnative native:compile -DskipTests

- uses: "marvinpinto/action-automatic-releases@latest"
- uses: ncipollo/release-action@v1
with:
repo_token: "${{ secrets.GH_TOKEN }}"
prerelease: false
files: |
LICENSE
./target/initializr-plusplus-linux-x86_64
artifacts: "./target/initializr-plusplus-linux-x86_64,LICENSE"
allowUpdates: true
token: ${{ secrets.GH_TOKEN }}

# - uses: "marvinpinto/action-automatic-releases@latest"
# with:
# repo_token: "${{ secrets.GH_TOKEN }}"
# prerelease: false
# files: |
# LICENSE
# ./target/initializr-plusplus-linux-x86_64
12 changes: 5 additions & 7 deletions .github/workflows/tagged-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@ jobs:

- name: Build Image
run: .\mvnw.cmd -Pnative native:compile -DskipTests
- uses: "marvinpinto/action-automatic-releases@latest"

- uses: ncipollo/release-action@v1
with:
repo_token: "${{ secrets.GH_TOKEN }}"
prerelease: false
files: |
LICENSE
./target/initializr-plusplus-windows-x86_64
artifacts: "./target/initializr-plusplus-windows-x86_64,LICENSE"
allowUpdates: true
token: ${{ secrets.GH_TOKEN }}

0 comments on commit 1d460d7

Please sign in to comment.