-
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.
Split up full-release into assemble and full-release
- Loading branch information
helpermethod
committed
Aug 3, 2022
1 parent
e88e015
commit c523cb3
Showing
1 changed file
with
9 additions
and
0 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 |
---|---|---|
|
@@ -20,10 +20,19 @@ jobs: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build | ||
run: ./jbang export native p2e.java | ||
- name: Assemble | ||
uses: jreleaser/[email protected] | ||
with: | ||
version: 1.1.0 | ||
setup-java: false | ||
arguments: assemble | ||
env: | ||
JRELEASER_PROJECT_VERSION: ${{ github.event.inputs.version }} | ||
- name: Release | ||
uses: jreleaser/[email protected] | ||
with: | ||
version: 1.1.0 | ||
setup-java: false | ||
env: | ||
JRELEASER_PROJECT_VERSION: ${{ github.event.inputs.version }} | ||
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|