Skip to content

feat: update schematics (#116) #33

feat: update schematics (#116)

feat: update schematics (#116) #33

Workflow file for this run

name: ๐Ÿš€
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- uses: actions/[email protected]
with:
node-version: '16'
- name: Build
run: yarn && yarn build
env:
NODE_AUTH_TOKEN: ${{ github.token }}
- name: Release
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
npx semantic-release
env:
GH_TOKEN: ${{ secrets.PAT }}
NODE_AUTH_TOKEN: ${{ github.token }}