🛖 Update lockfile #738
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: Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
# This allows the changesets/action step to override the default actions user, | |
# and allow CI jobs on commits coming from that step. | |
persist-credentials: false | |
- name: Setup Node.js 16.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16.x | |
- name: Install package manager | |
run: npm i -g pnpm@7.1.9 | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Set git user | |
run: | | |
git config user.name truefibot | |
git config user.email truebot.github@trusttoken.com | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
# This expects you to have a script called release which does a build for your packages and calls changeset publish | |
publish: pnpm run release | |
version: pnpm run version | |
commit: "🎉 Release new version" | |
title: "🎉 Release new version" | |
setupGitUser: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Deploy usedapp-docs.netlify.app | |
uses: nwtgck/actions-netlify@v1.2 | |
if: steps.changesets.outputs.published == 'true' | |
with: | |
enable-commit-comment: true | |
enable-pull-request-comment: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
overwrites-pull-request-comment: true | |
production-deploy: ${{ github.event_name != 'pull_request' }} | |
publish-dir: packages/docs/build | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_DOCS_SITE_ID }} | |
- name: Publish dev version to npm | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | |
pnpm -r --filter "@usedapp/*" exec ${PWD}/scripts/dev-version.sh | |
pnpm run build | |
pnpm -r publish --no-git-checks |