Skip to content

Commit

Permalink
update CI to Node 20 and upload-artifact@v3
Browse files Browse the repository at this point in the history
Hopefully this works just fine, and I don't need to push anything again,
I however don't feel like running the CI locally, so simply pushing is
easier! :3
  • Loading branch information
0neGal committed Jun 15, 2024
1 parent 6538b81 commit 0d7eebe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dev_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
- name: Setup Node environment
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- name: Install dependencies
run: npm install
- name: Create builds
run: npm run build:windows
- name: Archive production artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: viper-windows-builds
path: |
Expand All @@ -34,17 +34,17 @@ jobs:
- name: Setup Node environment
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- name: Install dependencies
run: npm install
- name: Create builds
run: npm run build:linux
- name: Archive production artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: viper-linux-builds
path: |
dist/*.AppImage
dist/*.tar.gz
dist/*.deb
dist/*.rpm
dist/*.rpm
4 changes: 2 additions & 2 deletions .github/workflows/release_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Node environment
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- name: Install dependencies
run: npm install
- name: Create builds
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Setup Node environment
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- name: Install dependencies
run: npm install
- name: Create builds
Expand Down

0 comments on commit 0d7eebe

Please sign in to comment.