Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: "18.x"
- run: npm ci
- name: Build extension
run: npm run build
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/safari.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: safari-build
on: push
jobs:
publish:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm ci
- name: Build extension
run: npm run build
env:
SENTRY_DSN: ${{ vars.SENTRY_DSN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
- run: |
jq --arg version "$VERSION" '.version=$version' dist/manifest.json > manifest.tmp.json \
&& mv manifest.tmp.json dist/manifest.json
env:
VERSION: "0.4.6"
- name: Convert to Safari extension
run: xcrun safari-web-extension-converter ./dist
Loading