Skip to content

Commit

Permalink
Remove .jar from artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
Pikachu920 authored Sep 5, 2024
1 parent ec4bbe8 commit 742d9cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-agent-jar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 11
- name: Grant execute permission for gradlew
Expand All @@ -26,5 +26,5 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: AddonPatcher-Agent-${{ steps.sha.outputs.short_sha }}.jar
name: AddonPatcher-Agent-${{ steps.sha.outputs.short_sha }}
path: build/libs/*.jar
6 changes: 3 additions & 3 deletions .github/workflows/build-replacer-jar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 11
- name: Grant execute permission for gradlew
Expand All @@ -26,5 +26,5 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: AddonPatcher-Replacer-${{ steps.sha.outputs.short_sha }}.jar
name: AddonPatcher-Replacer-${{ steps.sha.outputs.short_sha }}
path: build/libs/*.jar

0 comments on commit 742d9cc

Please sign in to comment.