Skip to content

Commit

Permalink
Maintain CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wtetsu committed Nov 30, 2024
1 parent 72fc303 commit 8b56096
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 32 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/build-firefox.yml

This file was deleted.

6 changes: 5 additions & 1 deletion .github/workflows/build-safari.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
build:
runs-on: macos-12
runs-on: macos-latest

strategy:
matrix:
Expand All @@ -16,6 +16,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install xcrun
run: sudo xcode-select -s /Library/Developer/CommandLineTools
- name: Install Safari Web Extension Converter
run: sudo xcode-select -s /Applications/Xcode.app
- name: Install Packages
run: npm install
- name: Build
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build for Chrome
name: Build

on: [push, pull_request]

Expand All @@ -8,6 +8,7 @@ jobs:

strategy:
matrix:
platform: [chrome, firefox]
node-version: [22.x, 23.x]

steps:
Expand All @@ -19,9 +20,9 @@ jobs:
- name: Install Packages
run: npm install
- name: Build
run: npm run release-chrome
run: npm run release-${{ matrix.platform }}
- name: Upload Build as Artifact
uses: actions/upload-artifact@v4
with:
name: dist-chrome-${{ matrix.node-version }}
path: dist-chrome
name: dist-${{ matrix.platform }}-${{ matrix.node-version }}
path: dist-${{ matrix.platform }}

0 comments on commit 8b56096

Please sign in to comment.