Skip to content

Commit

Permalink
ci, bug: actually fix release notification and github artifact naming
Browse files Browse the repository at this point in the history
  • Loading branch information
realRobotix committed Dec 14, 2024
1 parent 299b1c3 commit ff70f66
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: read_properties
with:
path: gradle.properties
properties: mod.id mod.version
properties: 'mod.id mod.version'

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down Expand Up @@ -89,5 +89,5 @@ jobs:
- name: Archive Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ steps.read_properties.outputs.mod.id }}-${{ steps.read_properties.outputs.mod.version }}+build.${{ github.run_number }}
name: ${{ steps.read_properties.outputs.mod-id }}-${{ steps.read_properties.outputs.mod-version }}+build.${{ github.run_number }}
path: ${{ steps.find_jars.outputs.jars }}
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id: read_properties
with:
path: gradle.properties
properties: mod.id mod.version
properties: 'mod.id mod.version'

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down Expand Up @@ -57,5 +57,5 @@ jobs:
- name: Archive Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ steps.read_properties.outputs.mod.id }}-${{ steps.read_properties.outputs.mod.version }}+build.${{ github.run_number }}
name: ${{ steps.read_properties.outputs.mod-id }}-${{ steps.read_properties.outputs.mod-version }}+build.${{ github.run_number }}
path: ${{ steps.find_jars.outputs.jars }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: read_properties
with:
path: gradle.properties
properties: mod.id mod.version
properties: 'mod.id mod.version'

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down Expand Up @@ -90,5 +90,5 @@ jobs:
- name: Archive Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ steps.read_properties.outputs.mod.id }}-${{ steps.read_properties.outputs.mod.version }}+build.${{ github.run_number }}
name: ${{ steps.read_properties.outputs.mod-id }}-${{ steps.read_properties.outputs.mod-version }}+build.${{ github.run_number }}
path: ${{ steps.find_jars.outputs.jars }}

0 comments on commit ff70f66

Please sign in to comment.