Browse Source

[CI] pass julia-arch ENV to setup-julia stage

Also change it to x64 to match the current build settings.

Co-authored-by: kimikage <kimikage.ceo@gmail.com>
pull/117/head
Johnny Chen 5 years ago committed by GitHub
parent
commit
38e90795cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .github/workflows/docs.yml

3
.github/workflows/docs.yml

@ -14,13 +14,14 @@ jobs: @@ -14,13 +14,14 @@ jobs:
strategy:
matrix:
julia-version: [1.4]
julia-arch: [x86]
julia-arch: [x64]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v1.0.0
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- name: Install dependencies
run: julia --project=docs -e 'using Pkg; Pkg.instantiate()'
- name: Build and deploy

Loading…
Cancel
Save