Skip to content

fix fix fix fix

fix fix fix fix #72

Workflow file for this run

name: POST_RELEASE
on:
push:
jobs:
post-release:
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [ 16 ]
runs-on: ${{ matrix.os }}
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set TAG
run: echo "TAG=v1.0.0" >> $GITHUB_ENV
- name: Use Node.js
uses: actions/setup-node@v3
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 translations
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BPMN_IO_EMAIL: ${{ secrets.BPMN_IO_EMAIL }}
BPMN_IO_USERNAME: ${{ secrets.BPMN_IO_USERNAME }}
REVIEWERS: 'barmac'
run: tasks/stages/update-translations