-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Publish Workflow to Use Node 20 Actions
- Loading branch information
1 parent
3687878
commit 8be71e8
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
|
@@ -40,11 +40,11 @@ jobs: | |
steps: | ||
- name: Get Token | ||
id: token | ||
uses: peter-murray/[email protected] | ||
uses: actions/create-github-app-token@v1 | ||
with: | ||
application_id: ${{ secrets.APP_ID }} | ||
application_private_key: ${{ secrets.APP_KEY }} | ||
organization: Nomi-CEu | ||
app-id: ${{ secrets.APP_ID }} | ||
private-key: ${{ secrets.APP_KEY }} | ||
owner: Nomi-CEu | ||
|
||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
@@ -64,7 +64,7 @@ jobs: | |
GITHUB_TAG: ${{ inputs.tag }} | ||
|
||
- name: Publish to GitHub | ||
uses: softprops/action-gh-release@v1 | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: "build/libs/*.jar" | ||
body_path: "build/changelog.md" | ||
|