Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

Merge pull request #537 from metaplex-foundation/febo/fix-formatting #48

Merge pull request #537 from metaplex-foundation/febo/fix-formatting

Merge pull request #537 from metaplex-foundation/febo/fix-formatting #48

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
title: Release Packages
publish: pnpm packages:publish
createGithubReleases: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}