Skip to content

Commit

Permalink
Multiplatform runners for workflow pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Nov 8, 2024
1 parent 7cffff8 commit 5f40077
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/qlbase_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.20.5' ]
os: [ubuntu-latest, windows-latest]
version: [linux, windows]
go-version: ['1.20.5']

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
Expand All @@ -30,5 +32,5 @@ jobs:
- name: Upload QLBase build
uses: actions/upload-artifact@v4
with:
name: qlbase.zip
path: qlbase.zip
name: qlbase-${{ matrix.version }}
path: qlbase.zip

0 comments on commit 5f40077

Please sign in to comment.