chore(deps): update dependency @types/express to v5 (#1279) #1036
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
name: publish | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish-npm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: SCM | |
uses: actions/checkout@v2 | |
- name: Setup Node Environment | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- name: Install Dependencies and Build | |
run: | | |
yarn | |
yarn bootstrap | |
yarn build | |
- name: Semantic Release | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> ~/.npmrc | |
yarn release | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |