chore: set range for beta release channel #22
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: Push checks | |
on: | |
push: | |
branches: | |
- master | |
- beta | |
jobs: | |
release: | |
name: Release process | |
runs-on: ubuntu-24.04 | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install additional libraries | |
uses: ./.github/actions/install-packages | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
registry-url: "https://registry.npmjs.org" | |
scope: '@kuzzleio' | |
- name: Install dependencies | |
run: npm ci | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GHP }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
SEMANTIC_RELEASE_NPM_PUBLISH: "true" | |
SEMANTIC_RELEASE_SLACK_WEBHOOK: ${{ secrets.SEMANTIC_RELEASE_SLACK_WEBHOOK }} | |
run: npx semantic-release | |
documentation_deploy: | |
needs: [release] | |
name: Documentation - Deploy | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install additional libraries | |
uses: ./.github/actions/install-packages | |
- uses: convictional/[email protected] | |
with: | |
owner: kuzzleio | |
repo: documentation | |
github_token: ${{ secrets.ACCESS_TOKEN_CI }} | |
workflow_file_name: child_repo.workflow.yml | |
ref: ${{ github.ref_name == 'master' && 'master' || 'develop' }} | |
client_payload: '{"repo_name":"kuzzle-plugin-s3","branch":"${{ github.ref_name }}","version":"1"}' |