diff --git a/.forgejo/workflows/pgo-binary.yml b/.forgejo/workflows/pgo-binary.yml index c64ae1d..880a0d6 100644 --- a/.forgejo/workflows/pgo-binary.yml +++ b/.forgejo/workflows/pgo-binary.yml @@ -19,6 +19,11 @@ jobs: image: rust:alpine steps: + - name: Install node + run: | + apk add --no-cache \ + node + - name: Checkout repository uses: actions/checkout@v4 @@ -137,15 +142,16 @@ jobs: image: rust:alpine steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Install Windows cross compiler + - name: Install Windows cross compiler and node run: | apk add --no-cache \ mingw-w64-gcc \ build-base \ - file + file \ + node + + - name: Checkout repository + uses: actions/checkout@v4 - name: Install Rust target run: |