From 0852479e080a08610aefb734b53a4d2cf48c7a73 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 26 Nov 2022 15:04:59 -0600 Subject: [PATCH] add macos job --- .github/workflows/publish.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 316a33d..32952cf 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -1,7 +1,7 @@ on: push: branches: - - main + - github-actions env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -24,4 +24,14 @@ jobs: with: node-version: 18 - run: npm ci - - run: npm run release \ No newline at end of file + - run: npm run release + build-macos: + runs-on: macos-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + - run: npm ci + - run: npm run release + \ No newline at end of file