Update and release #3640
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
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 */12 * * * | |
name: Update and release | |
permissions: {} | |
jobs: | |
updateDataAndRelease: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
name: Update data and release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update data and release | |
run: npm run release | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |