mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 20:38:41 -09:00
matrix wip
This commit is contained in:
parent
398f57fff5
commit
258b2e040f
3 changed files with 15 additions and 1 deletions
6
.github/actions/build/action.yml
vendored
6
.github/actions/build/action.yml
vendored
|
|
@ -4,6 +4,12 @@ inputs:
|
|||
node-version:
|
||||
description: 'Node.js version to use'
|
||||
required: true
|
||||
matrix-name:
|
||||
description: 'Matrix Name'
|
||||
required: true
|
||||
matrix-os:
|
||||
description: 'Matrix OS'
|
||||
required: true
|
||||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
|
|
|
|||
6
.github/workflows/nodejs.yml
vendored
6
.github/workflows/nodejs.yml
vendored
|
|
@ -33,6 +33,8 @@ jobs:
|
|||
uses: ./.github/actions/build
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
matrix-os: ubuntu-latest
|
||||
matrix-name: ubuntu
|
||||
|
||||
build-macos:
|
||||
name: Build macOS
|
||||
|
|
@ -44,4 +46,6 @@ jobs:
|
|||
- name: Build
|
||||
uses: ./.github/actions/build
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
matrix-os: macos-latest
|
||||
matrix-name: macos
|
||||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -32,6 +32,8 @@ jobs:
|
|||
uses: ./.github/actions/build
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
matrix-os: ubuntu-latest
|
||||
matrix-name: ubuntu
|
||||
|
||||
build-macos:
|
||||
name: Build macOS
|
||||
|
|
@ -44,6 +46,8 @@ jobs:
|
|||
uses: ./.github/actions/build
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
matrix-os: macos-latest
|
||||
matrix-name: macos
|
||||
|
||||
upload-release:
|
||||
name: Upload and Create Release
|
||||
|
|
|
|||
Loading…
Reference in a new issue