Update the main CI workflow (#742)

rename i386 to x86
update actions/checkout to v3 (v2 uses Node.js 12 which is about to be deprecated)
This commit is contained in:
nullptrdevs 2022-11-05 20:52:07 -07:00 committed by GitHub
parent 6420296a82
commit b08480256c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
@ -38,7 +38,7 @@ jobs:
- name: Build artifacts
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
declare -a targets=("x86_64-windows" "x86_64-linux" "x86_64-macos" "i386-windows" "i386-linux" "aarch64-macos")
declare -a targets=("x86_64-windows" "x86_64-linux" "x86_64-macos" "x86-windows" "x86-linux" "aarch64-macos")
mkdir -p "artifacts/"
for target in "${targets[@]}"; do