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