Skip to content

Merge branch 'main' of https://github.com/loicpennequin/create-v3-app #76

Merge branch 'main' of https://github.com/loicpennequin/create-v3-app

Merge branch 'main' of https://github.com/loicpennequin/create-v3-app #76

Workflow file for this run

# Originally inspired by Cloudflare Wrangler
# https://github.com/cloudflare/wrangler2/blob/main/.github/workflows/release.yml
name: Release
on:
push:
branches:
- main
jobs:
release:
name: Create a PR for release workflow
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
- name: Build the package
run: yarn build:cli
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}