From 7702a3aeb9dc234d14c7d8747d297cc4e399486c Mon Sep 17 00:00:00 2001 From: Kai O'Reilly Date: Tue, 7 Nov 2023 16:53:48 -0800 Subject: [PATCH] improved goki build workflow --- .github/workflows/hugo.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml index 8a38d46..bfc755f 100644 --- a/.github/workflows/hugo.yaml +++ b/.github/workflows/hugo.yaml @@ -32,17 +32,14 @@ jobs: # Build goki job build-goki: name: Build GoKi - strategy: - matrix: - go-version: [1.21.x] - platform: [ubuntu-latest] - runs-on: ${{ matrix.platform }} + runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: ${{ matrix.go-version }} + go-version: '1.21.3' - name: Install GoKi # we don't want a GUI in the CI