Skip to content

Commit

Permalink
z
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaMan123 committed Dec 2, 2024
1 parent 2019383 commit 2a28412
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ jobs:
build:
strategy:
matrix:
node-version: [20.x, latest]
os: [windows-2022, ubuntu-22.04, ubuntu-latest]
node-version: [20.x, lts]
# os: [windows-2022, ubuntu-22.04, ubuntu-latest]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -45,7 +46,7 @@ jobs:
- name: Upload
uses: actions/upload-artifact@v4
with:
name: release-${{ matrix.os }}/${{ matrix.node-version }}
name: release-${{ matrix.os }}-${{ matrix.node-version }}
path: dist/
retention-days: 1

Expand All @@ -54,11 +55,11 @@ jobs:
run: |
appName=$(ls dist | head -1)
chmod +x ./dist/$appName/deepnest
./dist/$appName/deepnest
xvfb-run ./dist/$appName/deepnest
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: nesting-results-${{ matrix.os }}/${{ matrix.node-version }}
name: nesting-results-${{ matrix.os }}-${{ matrix.node-version }}
path: ~/Downloads/nesting-*
retention-days: 1

0 comments on commit 2a28412

Please sign in to comment.