From 7addd7afec0e56b78e168f272661f06d4b2894ed Mon Sep 17 00:00:00 2001 From: Colin Regourd Date: Wed, 15 May 2024 14:36:07 +0200 Subject: [PATCH] Extends workflow --- .github/workflows/release-history.yml | 37 +++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/release-history.yml diff --git a/.github/workflows/release-history.yml b/.github/workflows/release-history.yml new file mode 100644 index 00000000..410da574 --- /dev/null +++ b/.github/workflows/release-history.yml @@ -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 }}