@0.4.1: Requested primitives added (#10) #32
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
# Adapted from create-t3-app. | |
name: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
if: ${{ github.repository_owner == 'luxdefi-ui' }} | |
name: Create a PR for release workflow | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use PNPM | |
uses: pnpm/[email protected] | |
with: | |
version: 8.6.1 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
version: 8.6.1 | |
node-version: 18 | |
cache: "pnpm" | |
- name: Install NPM Dependencies | |
run: pnpm install | |
# - name: Check for errors | |
# run: pnpm check | |
- name: Build the package | |
run: pnpm build:cli | |
- name: Create Version PR or Publish to NPM | |
id: changesets | |
uses: changesets/[email protected] | |
with: | |
commit: "chore(release): version packages" | |
title: "chore(release): version packages" | |
version: node .github/changeset-version.js | |
publish: npx changeset publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }} | |
NODE_ENV: "production" |