From 47b4c96b6848f8385f2ff6fa77983149204a591d Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 2 Apr 2025 16:30:46 +0100 Subject: build: add all available github action oses as listed in: https://docs.github.com/en/actions/writing-workflows/choosing-where-your-workflow-runs/choosing-the-runner-for-a-job --- .github/workflows/release.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index faecb92..4c8368c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,8 +23,18 @@ jobs: matrix: os: - ubuntu-latest + - ubuntu-24.04 + - ubuntu-22.04 + - ubuntu-20.04 + - ubuntu-24.04-arm + - ubuntu-22.04-arm - macos-latest + - macos-15 + - macos-14 + - macos-13 - windows-latest + - windows-2022 + - windows-2019 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 @@ -33,7 +43,7 @@ jobs: # (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload. # Note that glob pattern is not supported yet. bin: ngit,git-remote-nostr - archive: ngit-$tag-$target + archive: ngit-$tag-${{ matrix.os }} # (optional) On which platform to distribute the `.tar.gz` file. # [default value: unix] # [possible values: all, unix, windows, none] -- cgit v1.2.3