Add [1.0.2] to extensions/quarkiverse-roq-generator.yaml #1919
This file contains 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 to the Extension Registry" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "platforms/**" | |
- "extensions/**" | |
- "patch.sh" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Set up JBang | |
uses: jbangdev/setup-jbang@main | |
- name: Run Publish Catalog script | |
run: | | |
jbang trust add https://github.com/quarkusio/ | |
jbang catalog_publish@quarkusio --working-directory=. --all | |
env: | |
REGISTRY_URL: ${{ secrets.REGISTRY_URL }} | |
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }} | |
- name: Patch the registry | |
run: ./patch.sh | |
env: | |
REGISTRY_URL: ${{ secrets.REGISTRY_URL }} | |
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }} |