Skip to content

Commit

Permalink
Extends workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cregourd committed May 15, 2024
1 parent 000dd23 commit fbeb96e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/release-history.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Release history

on:
push:
branches:
- v[0-9]+

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install Dependencies
run: yarn install

- name: Link
run: yarn lint

- name: Create Release Pull Request or Publish (${{ github.ref_name }})
uses: changesets/action@v1
with:
version: yarn changeset version
publish: yarn publish-package
title: ${{github.ref_name}} — Version Packages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit fbeb96e

Please sign in to comment.