Merge pull request #1181 from gabriel-farache/fix_1180 #208
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: Snapshot Deploy | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main ] | |
| defaults: | |
| run: | |
| shell: bash | |
| permissions: | |
| attestations: write | |
| id-token: write | |
| contents: read | |
| jobs: | |
| deploy-snapshot: | |
| name: Deploy Snapshots | |
| uses: quarkiverse/.github/.github/workflows/perform-release.yml@main | |
| secrets: inherit | |
| with: | |
| ref: main | |
| version: 3.0.0-SNAPSHOT |