consolidated workflows and triggers Action release based on changeset event output 'publish' being true

This commit is contained in:
Jacob M-G Evans 2023-08-24 15:35:32 -05:00
parent fcf648c789
commit 30e126d1a4
No known key found for this signature in database
GPG key ID: 2A0C497CAB123094
2 changed files with 6 additions and 30 deletions

View file

@ -1,30 +0,0 @@
name: Publish
permissions:
contents: write
on:
release:
types: [released, edited]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.release.tag_name }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "latest"
cache: "npm"
- name: Install modules and build
run: npm ci && npm run build
- uses: JasonEtco/build-and-tag-action@v2
env:
GITHUB_TOKEN: ${{ github.token }}

View file

@ -38,3 +38,9 @@ jobs:
publish: npx changeset tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Tag & Release Action
if: steps.changesets.outputs.published == 'true'
uses: JasonEtco/build-and-tag-action@v2
env:
GITHUB_TOKEN: ${{ github.token }}