Refactor imports and logging, update persistence libraries #4
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: GuicedEE OpenAPI | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| centralRelease: | |
| type: boolean | |
| description: Run a release to maven central | |
| default: false | |
| push: | |
| branches: | |
| - main | |
| - master | |
| pull_request: | |
| types: [opened, synchronize, reopened, closed] | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| verify: | |
| if: ${{ github.event_name == 'pull_request' && github.event.action != 'closed' }} | |
| uses: GuicedEE/Workflows/.github/workflows/projects.yml@master | |
| with: | |
| baseDir: '' | |
| name: 'Guiced OpenAPI' | |
| sonarProjectName: 'GuicedEE_OpenAPI' | |
| sonarOrganization: 'guicedee' | |
| skipDeploy: 'true' | |
| secrets: inherit | |
| deploy: | |
| if: >- | |
| github.event_name == 'push' || | |
| github.event_name == 'workflow_dispatch' || | |
| (github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true) | |
| uses: GuicedEE/Workflows/.github/workflows/projects.yml@master | |
| with: | |
| baseDir: '' | |
| name: 'Guiced OpenAPI' | |
| sonarProjectName: 'GuicedEE_OpenAPI' | |
| sonarOrganization: 'guicedee' | |
| publishToCentral: ${{inputs.centralRelease}} | |
| secrets: inherit |