Skip to content

chore: add specific permission for actions #68

chore: add specific permission for actions

chore: add specific permission for actions #68

Workflow file for this run

name: Release
permissions:
pull-requests: write
on:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12
- run: yarn
- run: yarn lint
release:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
NODE_AUTH_TOKEN: ${{secrets.npm_token}}