Skip to content

Merge pull request #371 from Shared-Reality-Lab/map-bug-fix #12

Merge pull request #371 from Shared-Reality-Lab/map-bug-fix

Merge pull request #371 from Shared-Reality-Lab/map-bug-fix #12

Workflow file for this run

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)"