Skip to content

Update

Update #123

Workflow file for this run

name: Update
on:
workflow_dispatch:
schedule:
- cron: '30 20 5,19 * *'
jobs:
check-and-update:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
registry-url: 'https://registry.npmjs.org'
- uses: fregante/setup-git-user@v2
- name: Try updating the version
run: ./scripts/bump-and-publish.sh
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: git push --follow-tags