Skip to content

Commit

Permalink
chore: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
whes1015 committed Jul 23, 2023
1 parent 937c5c3 commit 98160d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Restore dependencies
run: npm i
run: npm ci
- name: Build
run: npm run dist
- name: Upload Artifact
uses: actions/upload-artifact@master
with:
name: "TREM-Lite.Windows_x64.exe"
path: D:/a/TREM-Lite/dev/*.exe
path: D:/a/TREM-Lite/TREM-Lite/dev/*.exe

Linux_amd64:
runs-on: ubuntu-latest
Expand All @@ -40,14 +40,14 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Restore dependencies
run: npm i
run: npm ci
- name: Build
run: npm run dist
- name: Upload Artifact
uses: actions/upload-artifact@master
with:
name: "TREM-Lite.Linux_amd64.deb"
path: /home/runner/work/TREM-Lite/dev/*.deb
path: /home/runner/work/TREM-Lite/TREM-Lite/dev/*.deb

macOS_x64:
runs-on: macos-latest
Expand All @@ -61,11 +61,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Restore dependencies
run: npm i
run: npm ci
- name: Build
run: npm run dist
- name: Upload Artifact
uses: actions/upload-artifact@master
with:
name: "TREM-Lite.macOS_x64.dmg"
path: D:/a/TREM-Lite/dev/*.dmg
path: D:/a/TREM-Lite/TREM-Lite/dev/*.dmg

0 comments on commit 98160d7

Please sign in to comment.