Skip to content

Update quay.io/keycloak/keycloak Docker tag to v26.1.1 (#115) #110

Update quay.io/keycloak/keycloak Docker tag to v26.1.1 (#115)

Update quay.io/keycloak/keycloak Docker tag to v26.1.1 (#115) #110

Workflow file for this run

name: Release (NPM)
on:
push:
branches: ['main']
jobs:
static-checks-npm:
uses: digicatapult/shared-workflows/.github/workflows/static-checks-npm.yml@main
with:
matrix_commands: '["lint", "depcheck", "check"]'
tests-npm:
uses: digicatapult/shared-workflows/.github/workflows/tests-npm.yml@main
with:
tests: '["test"]'
docker_compose_file: ""
release-npm:
needs: [static-checks-npm, tests-npm]
uses: digicatapult/shared-workflows/.github/workflows/release-module-npm.yml@main
with:
npm_build_command: npm run build
permissions:
contents: write
packages: write
secrets:
REGISTRY_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
release-gh-packages:
needs: [static-checks-npm, tests-npm]
uses: digicatapult/shared-workflows/.github/workflows/release-module-npm.yml@main
with:
npm_build_command: npm run build
registry_url: 'https://npm.pkg.github.com'
permissions:
contents: write
packages: write
release-github:
needs: [release-npm, release-gh-packages]
uses: digicatapult/shared-workflows/.github/workflows/release-github.yml@main
permissions:
contents: write
pull-requests: read
secrets: inherit