diff options
author | 0neGal <mail@0negal.com> | 2024-06-20 00:11:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 00:11:19 +0200 |
commit | 25adf3d3369526ad393d4086ad2c82963bc02345 (patch) | |
tree | fb9b95a174b1490fd60689160f88732b746da2bb /.github/workflows | |
parent | 0f40ecfdf1d351762e6b0bc525b3d716756c5643 (diff) | |
parent | 6c2df3103bca1b782101601b088f550f2662ee99 (diff) | |
download | Viper-25adf3d3369526ad393d4086ad2c82963bc02345.tar.gz Viper-25adf3d3369526ad393d4086ad2c82963bc02345.zip |
Merge branch 'main' into gamepad-support
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/dev_builds.yml | 10 | ||||
-rw-r--r-- | .github/workflows/release_builds.yml | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/dev_builds.yml b/.github/workflows/dev_builds.yml index 1951ee7..d60db94 100644 --- a/.github/workflows/dev_builds.yml +++ b/.github/workflows/dev_builds.yml @@ -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: | @@ -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
\ No newline at end of file + dist/*.rpm diff --git a/.github/workflows/release_builds.yml b/.github/workflows/release_builds.yml index bc3dac6..e2ebb04 100644 --- a/.github/workflows/release_builds.yml +++ b/.github/workflows/release_builds.yml @@ -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 @@ -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 |