name: Release on: push: tags: - '*' jobs: automate: runs-on: ubuntu-latest env: RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }} FORCE_COLOR: 1 steps: - uses: actions/checkout@v2 with: fetch-depth: 0 submodules: true - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - uses: actions/setup-node@v1 with: node-version: 12 registry-url: https://registry.npmjs.org/ - run: yarn - run: grunt automated-release #- run: npm publish # env: # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}