Specify Turbo JSON Schema version #108
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: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
PIP_DEFAULT_TIMEOUT: 100 | |
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
jobs: | |
changesets: | |
name: Changesets | |
runs-on: ubuntu-latest | |
outputs: | |
should-deploy: ${{ steps.changesets.outputs.hasChangesets == 'false' }} | |
permissions: write-all | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Install Poetry | |
run: pipx install poetry | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
cache: yarn | |
node-version-file: .node-version | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
cache: poetry | |
python-version-file: .python-version | |
- name: Install Node.js dependencies | |
run: yarn install | |
- name: Import GPG key | |
uses: crazy-max/[email protected] | |
with: | |
git_commit_gpgsign: true | |
git_user_signingkey: true | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
- name: Setup Git user | |
run: | | |
git config --global user.email [email protected] | |
git config --global user.name org-spear-ai | |
- name: Build packages | |
run: yarn turbo run build | |
- name: Authenticate with NPM | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN | |
- name: Authenticate with GitHub Packages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
run: npm config set //npm.pkg.github.com/:_authToken=$GITHUB_TOKEN | |
- id: changesets | |
name: Run Changesets — Create a Release Pull Request or merge a Release Pull Request | |
uses: changesets/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
with: | |
title: Release 🚀 | |
version: yarn run version | |
commit: Release 🚀 | |
publish: yarn run publish-packages | |
setupGitUser: false |