chore(project): publish v1.11.3 #106
Workflow file for this run
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: Post release | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.*' | |
jobs: | |
post-release: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [20] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set TAG | |
run: echo "TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV | |
- name: Wait for published | |
env: | |
PKG: '@bpmn-io/form-js@${{ env.TAG }}' | |
run: tasks/stages/await-published | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Check for stable release | |
run: | | |
if [[ ${{ env.TAG }} =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]] | |
then echo "STABLE_RELEASE=true" >> $GITHUB_ENV | |
fi | |
- name: Update demo | |
if: ${{ env.STABLE_RELEASE == 'true' }} | |
env: | |
BPMN_IO_TOKEN: ${{ secrets.BPMN_IO_TOKEN }} | |
BPMN_IO_EMAIL: ${{ secrets.BPMN_IO_EMAIL }} | |
BPMN_IO_USERNAME: ${{ secrets.BPMN_IO_USERNAME }} | |
BPMN_IO_DEMO_ENDPOINT: ${{ secrets.BPMN_IO_DEMO_ENDPOINT }} | |
run: tasks/stages/update-demo | |
- name: Update examples | |
if: ${{ env.STABLE_RELEASE == 'true' }} | |
env: | |
BPMN_IO_TOKEN: ${{ secrets.BPMN_IO_TOKEN }} | |
BPMN_IO_EMAIL: ${{ secrets.BPMN_IO_EMAIL }} | |
BPMN_IO_USERNAME: ${{ secrets.BPMN_IO_USERNAME }} | |
run: tasks/stages/update-examples | |
- name: Update website | |
if: ${{ env.STABLE_RELEASE == 'true' }} | |
env: | |
BPMN_IO_TOKEN: ${{ secrets.BPMN_IO_TOKEN }} | |
BPMN_IO_EMAIL: ${{ secrets.BPMN_IO_EMAIL }} | |
BPMN_IO_USERNAME: ${{ secrets.BPMN_IO_USERNAME }} | |
run: tasks/stages/update-website |