Skip to content

Commit

Permalink
Merge branch 'fix-nightly-builds' into custom-builds/current
Browse files Browse the repository at this point in the history
* fix-nightly-builds:
  Fix nightly builds by updating package list before installing build dependencies
  • Loading branch information
PikachuEXE committed Nov 4, 2024
2 parents 773f46b + a8615e6 commit c754afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Install libarchive-tools
if: startsWith(matrix.os, 'ubuntu')
run: sudo apt -y install libarchive-tools; echo "Version Number ${{ toJson(job) }} ${{ toJson(needs) }}"
run: sudo apt update; sudo apt -y install libarchive-tools; echo "Version Number ${{ toJson(job) }} ${{ toJson(needs) }}"

- name: Build x64 with Node.js ${{ matrix.node-version}}
if: contains(matrix.runtime, 'x64')
Expand Down

0 comments on commit c754afd

Please sign in to comment.