Skip to content

Commit

Permalink
incr: added shell property
Browse files Browse the repository at this point in the history
  • Loading branch information
akshayitzme committed Nov 11, 2024
1 parent 86a0526 commit 929d3e3
Showing 1 changed file with 20 additions and 17 deletions.
37 changes: 20 additions & 17 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,25 @@ jobs:
strategy:
matrix:
include:
- os: macos-14
opt: '--mac'
dist: 'dist-macOS-arm'

- os: macos-13
opt: '--mac'
dist: 'dist-macOS-x86_64'

- os: ubuntu-latest
opt: '--linux'
dist: 'dist-linux'

- os: windows-2019
opt: '--win'
dist: 'dist-windows'
shell: bash
- { os: macos-14, shell: bash, opt: '--mac', dist: 'dist-macOS-arm' },
- {
os: macos-13,
shell: bash,
opt: '--mac',
dist: 'dist-macOS-x86_64',
},
- {
os: ubuntu-latest,
shell: bash,
opt: '--linux',
dist: 'dist-linux',
},
- {
os: windows-2019,
shell: bash,
opt: '--win',
dist: 'dist-windows',
}

steps:
- name: Setup node
Expand Down Expand Up @@ -68,4 +71,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.dist }}
path: dist.tar
path: dist.tar

0 comments on commit 929d3e3

Please sign in to comment.