This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
feat!: new @scalar/openapi-types
package (#175)
#112
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: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Turborepo cache | |
uses: dtinth/setup-github-actions-caching-for-turbo@v1 | |
- name: Build | |
run: pnpm turbo build | |
- name: Git Status | |
run: git status | |
- name: Stash changes | |
run: git stash | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
# The pull request title. | |
title: 'chore: release' | |
# The command to update version, edit CHANGELOG, read and delete changesets. | |
version: 'pnpm run bump' | |
# The commit message to use. | |
commit: 'chore: version packages' | |
# The command to use to build and publish packages | |
publish: 'pnpm -r publish --access public' | |
# Create Github releases after `publish` | |
createGithubReleases: true | |
env: | |
# https://github.com/settings/tokens/new | |
# Expiration: No expiration | |
# Select: repo.* | |
GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
# https://www.npmjs.com/settings/YOUR_ACCOUNT_HANDLE/tokens/granular-access-tokens/new | |
# Custom Expiration: 01-01-2100 | |
# Permissions: Read and Write | |
# Select packages: @scalar | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# - name: Send bundle stats and build information to RelativeCI | |
# uses: relative-ci/agent-action@v2 | |
# with: | |
# key: ${{ secrets.RELATIVE_CI_KEY }} | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
# webpackStatsFile: ./packages/api-reference/dist/webpack-stats.json |