chore: bump typescript from 5.5.0-dev.20240522 to 5.5.0-dev.20240523 … #25
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 please" | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
outputs: | |
paths_released: ${{ steps.rp_step.outputs.paths_released }} | |
releases_created: ${{ steps.rp_step.outputs.releases_created }} | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: rp_step | |
with: | |
# Expires ~December 2024 | |
token: ${{ secrets.REPO_ADMIN_TOKEN }} | |
config-file: release-please-config.json | |
manifest-file: release-please-manifest.json | |
publish: | |
needs: | |
- release | |
if: ${{ needs.release.outputs.releases_created }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
path: ${{ fromJson(needs.release.outputs.paths_released) }} | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Setup Node.js" | |
uses: actions/setup-node@v4 | |
with: | |
# Can't cache, since we don't commit the lockfile | |
node-version: 20 | |
registry-url: "https://registry.npmjs.org" | |
- name: "Install dependencies" | |
run: | | |
npm install | |
- name: "Build all packages" | |
# We build everything. Not ideal, but this makes sure that we don't have to worry here about resolving internal dependencies | |
run: | | |
npm run build:ws | |
- name: "Publish to NPM" | |
env: | |
# Expires ~December 2024 | |
# Uses NODE_AUTH_TOKEN which is supported by actions/setup-node | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
run: | | |
cd ${{ matrix.path }} | |
npm publish --provenance --access public |