Skip to content

Commit

Permalink
Merge pull request #9 from mikemccracken/2024.04.01/main/build-focal-too
Browse files Browse the repository at this point in the history
build: release on focal and jammy
  • Loading branch information
hallyn authored Apr 2, 2024
2 parents 44e0153 + c0ddccf commit 0f53a29
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ on:
name: build
jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
name: build
runs-on: ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up golang
Expand Down Expand Up @@ -62,6 +65,7 @@ jobs:
go get -v ./...
make
cp atomfs ~/bin
cp atomfs atomfs-${{ matrix.os }}
- name: test
run: |
export PATH=~/bin:$PATH
Expand All @@ -79,4 +83,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
atomfs
atomfs-${{ matrix.os }}

0 comments on commit 0f53a29

Please sign in to comment.