fix: correct file watcher to ignore saved.md files instead of saved.j… #45
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
# | |
# This runs after changes are merged to `main`. There are two scenarios: | |
# 1. The commit was from a feature branch being merged. In this case, | |
# release-please will create/update a release PR to include the commit. | |
# 2. The commit was from a release-please PR being merged. In this case, | |
# the release will be tagged and the publish steps will be taken. | |
# | |
name: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run release-please | |
uses: GoogleCloudPlatform/release-please-action@v4 | |
id: release | |
with: | |
# Note that we need to use a custom token here because events triggered | |
# by the special `GITHUB_TOKEN` will not create a new workflow run (to | |
# avoid creating recursive workflow runs). In our case, we want this | |
# release-please action to trigger the `build` workflow when it pushes | |
# to a `release-please` branch; using a custom token here makes it work. | |
token: ${{ secrets.GH_ACCESS_TOKEN }} | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
# The pnpm caching strategy in the following steps is based on: | |
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
run: | | |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- name: Enable pnpm cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | |
key: pnpm-store-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
# restore-keys: | | |
# pnpm-store-${{ runner.os }}- | |
# Save the auth token so that the build can access private packages from | |
# (and publish packages to) the GitHub Packages registry | |
- name: Configure npm auth tokens | |
run: | | |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_ACCESS_TOKEN }}" > ~/.npmrc | |
- name: Install dependencies | |
run: | | |
pnpm install | |
# XXX: Workaround for Puppeteer issues | |
- name: Install Chromium for Puppeteer | |
run: | | |
node ./packages/docs-builder/node_modules/puppeteer/install.js | |
- name: Build | |
id: build | |
run: | | |
pnpm ci-build | |
- name: Publish packages | |
if: ${{ steps.release.outputs.releases_created == 'true' }} | |
run: | | |
pnpm -r publish |