Fix extraDependencies not actually being added to the POM or module f… #45
This file contains hidden or 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
| name: Publish | |
| on: | |
| push: | |
| branches: [ 'master' ] | |
| paths-ignore: | |
| - '.github/workflows/**' | |
| - 'README.md' | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| uses: MinecraftForge/SharedActions/.github/workflows/gradle.yml@v0 | |
| with: | |
| java: 21 | |
| gradle_tasks: 'check publish' | |
| artifact_name: 'minecraft-mavenizer' | |
| secrets: | |
| DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
| PROMOTE_ARTIFACT_WEBHOOK: ${{ secrets.PROMOTE_ARTIFACT_WEBHOOK }} | |
| PROMOTE_ARTIFACT_USERNAME: ${{ secrets.PROMOTE_ARTIFACT_USERNAME }} | |
| PROMOTE_ARTIFACT_PASSWORD: ${{ secrets.PROMOTE_ARTIFACT_PASSWORD }} | |
| MAVEN_USER: ${{ secrets.MAVEN_USER }} | |
| MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
| GRADLE_CACHE_KEY: ${{ secrets.GRADLE_CACHE_KEY }} |