From b4622783b2bc948bcad4704345b1418e308a05d0 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Thu, 23 Nov 2023 16:26:02 -0500 Subject: [PATCH] chore(repo): disable freebsd support for beta releases (#20396) --- .github/workflows/publish.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a705741dd1..9874951939 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -158,9 +158,11 @@ jobs: timeout-minutes: 45 steps: - uses: actions/checkout@v3 + if: ${{ !contains(github.ref, '-') }} - name: Build id: build - uses: cross-platform-actions/action@v0.21.0 + if: ${{ !contains(github.ref, '-') }} + uses: cross-platform-actions/action@v0.21.1 env: DEBUG: napi:* RUSTUP_IO_THREADS: 1 @@ -197,9 +199,10 @@ jobs: rm -rf node_modules rm -rf dist echo "KILL ALL NODE PROCESSES" - killall node + killall node || true echo "COMPLETE" - name: Upload artifact + if: ${{ !contains(github.ref, '-') }} uses: actions/upload-artifact@v3 with: name: bindings-freebsd