Skip to content

Commit

Permalink
add release job for publishing m1 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
tjdavenport committed Mar 18, 2024
1 parent 95ebab7 commit e88ebb3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ on:
types: [created]

jobs:
publish_on_mac_arm:
runs-on: macos-14
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 21
- name: install dependencies
run: npm install
- name: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run publish
publish_on_mac:
runs-on: macos-latest
steps:
Expand Down

0 comments on commit e88ebb3

Please sign in to comment.