chore(repo): disable freebsd support for beta releases (#20396)

This commit is contained in:
Jason Jean 2023-11-23 16:26:02 -05:00 committed by GitHub
parent 1a994c7f92
commit b4622783b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,9 +158,11 @@ jobs:
timeout-minutes: 45 timeout-minutes: 45
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
if: ${{ !contains(github.ref, '-') }}
- name: Build - name: Build
id: build id: build
uses: cross-platform-actions/action@v0.21.0 if: ${{ !contains(github.ref, '-') }}
uses: cross-platform-actions/action@v0.21.1
env: env:
DEBUG: napi:* DEBUG: napi:*
RUSTUP_IO_THREADS: 1 RUSTUP_IO_THREADS: 1
@ -197,9 +199,10 @@ jobs:
rm -rf node_modules rm -rf node_modules
rm -rf dist rm -rf dist
echo "KILL ALL NODE PROCESSES" echo "KILL ALL NODE PROCESSES"
killall node killall node || true
echo "COMPLETE" echo "COMPLETE"
- name: Upload artifact - name: Upload artifact
if: ${{ !contains(github.ref, '-') }}
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: bindings-freebsd name: bindings-freebsd