Add REST client module and enhance parallel test support #9
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: JWebMP Typescript Client | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| centralRelease: | ||
| type: boolean | ||
| description: Run a release to maven central | ||
| default: false | ||
| push: | ||
| env: | ||
| GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
| GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | ||
| permissions: | ||
| contents: read | ||
| packages: write | ||
| jobs: | ||
| JWebMPCore: | ||
|
Check failure on line 17 in .github/workflows/maven-package.yml
|
||
| uses: GuicedEE/Workflows/.github/workflows/projects.yml@master | ||
| with: | ||
| baseDir: '' | ||
| name: 'JWebMP Typescript Client' | ||
| publishToCentral: ${{inputs.centralRelease}} | ||
| secrets: | ||
| USERNAME: ${{secrets.USERNAME}} | ||
| USER_TOKEN: ${{secrets.USER_TOKEN}} | ||
| SONA_USERNAME: ${{secrets.SONA_USERNAME}} | ||
| SONA_PASSWORD: ${{secrets.SONA_PASSWORD}} | ||
| GPG_PASSPHRASE: ${{secrets.GPG_PASSPHRASE}} | ||
| GPG_PRIVATE_KEY: ${{secrets.GPG_PRIVATE_KEY}} | ||