Merge pull request #159 from cloudflare/jacobmgevans/gh-workflow

Automation release
This commit is contained in:
Jacob M-G Evans 2023-08-24 15:45:07 -05:00 committed by GitHub
commit b076e889fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 }}