fix: prod bug fixes #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Xcode Project Artifact | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '16' | |
- name: Install dependencies | |
run: npm install | |
- name: Build Chrome extension | |
run: npm run pack:test | |
- name: Convert to Safari extension | |
run: xcrun safari-web-extension-converter ./build-chrome | |
- name: Upload Xcode project | |
uses: actions/upload-artifact@v4 | |
with: | |
name: xcode-project | |
path: "IMAGE Extension (Test)" |