Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Griefed/ServerPackCreatorExampleAddon
1 result
Show changes
Commits on Source (3)
......@@ -220,8 +220,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.uploadurl }}
asset_path: ./build/libs/Minigame-${{ needs.release.outputs.newtag }}.jar
asset_name: Minigame-${{ needs.release.outputs.newtag }}.jar
asset_path: ./build/libs/MiniGame-${{ needs.release.outputs.newtag }}.jar
asset_name: MiniGame-${{ needs.release.outputs.newtag }}.jar
asset_content_type: application/jar
- name: Upload Release Asset Sources Jar
......@@ -231,8 +231,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.uploadurl }}
asset_path: ./build/libs/Minigame-${{ needs.release.outputs.newtag }}-sources.jar
asset_name: Minigame-${{ needs.release.outputs.newtag }}-sources.jar
asset_path: ./build/libs/MiniGame-${{ needs.release.outputs.newtag }}-sources.jar
asset_name: MiniGame-${{ needs.release.outputs.newtag }}-sources.jar
asset_content_type: application/jar
- name: Upload Release Asset Javadoc Jar
......@@ -242,6 +242,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.uploadurl }}
asset_path: ./build/libs/Minigame-${{ needs.release.outputs.newtag }}-javadoc.jar
asset_name: Minigame-${{ needs.release.outputs.newtag }}-javadoc.jar
asset_path: ./build/libs/MiniGame-${{ needs.release.outputs.newtag }}-javadoc.jar
asset_name: MiniGame-${{ needs.release.outputs.newtag }}-javadoc.jar
asset_content_type: application/jar
\ No newline at end of file
......@@ -64,7 +64,7 @@ generateNotes:
section: '🧨 Breaking changes!'
hidden: false
- type: 'build'
section: '🦊 CI/CD'
section: ' Build and Dependencies'
hidden: false
- type: 'chore'
section: 'Other'
......
### [3.0.4](https://git.griefed.de/Griefed/ServerPackCreatorExampleAddon/compare/3.0.3...3.0.4) (2022-02-19)
### ⚗ Build and Dependencies
* **ServerPackCreator:** Update to beta.3 ([61689a2](https://git.griefed.de/Griefed/ServerPackCreatorExampleAddon/commit/61689a27bc2a4c2a6d0620774a4ab014806b01af))
### 🦊 CI/CD
* Fix GitHub release job asset upload for MiniGame branch ([79be391](https://git.griefed.de/Griefed/ServerPackCreatorExampleAddon/commit/79be3918b57a74e09428dcc75f65aacdc4a1a99c))
### [3.0.3](https://git.griefed.de/Griefed/ServerPackCreatorExampleAddon/compare/3.0.2...3.0.3) (2022-02-15)
......
......@@ -46,7 +46,7 @@ dependencies {
// Dependencies required for any plugin and/or extension to work
implementation 'org.pf4j:pf4j:3.6.0'
annotationProcessor 'org.pf4j:pf4j:3.6.0'
implementation 'de.griefed:serverpackcreator:3.0.0-beta.2'
implementation 'de.griefed:serverpackcreator:3.0.0-beta.3'
// Required if you want to log to any of ServerPackCreators logs
implementation 'org.apache.logging.log4j:log4j-api:2.17.1'
......