Release #205
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: Release | |
on: | |
schedule: | |
- cron: "25 9 */3 * *" | |
permissions: | |
id-token: write | |
contents: write | |
jobs: | |
release: | |
name: Updates languages, releases a new version if needed | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v2 | |
- name: Install Node | |
id: install_node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "20" | |
registry-url: "https://registry.npmjs.org" | |
- name: Install dependencies | |
id: install_dependencies | |
run: | | |
npm install | |
- name: Update languages | |
id: update | |
run: | | |
npm run update | |
- name: Test | |
id: test | |
if: ${{ steps.update.outputs.status == 'updated' }} | |
run: | | |
npm run test | |
- name: Bump version | |
id: bump_version | |
if: ${{ steps.update.outputs.status == 'updated' }} | |
run: | | |
npm run bump_version | |
- name: Release | |
id: release | |
if: ${{ steps.update.outputs.status == 'updated' }} | |
run: | | |
npm run release | |
- name: Publish | |
id: publish | |
if: ${{ steps.update.outputs.status == 'updated' }} | |
run: | | |
npm publish --provenance | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |