Skip to content

Commit

Permalink
Simplify build matrix specification
Browse files Browse the repository at this point in the history
  • Loading branch information
KonishchevDmitry committed Aug 16, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 541551f commit 7673ecf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -11,12 +11,12 @@ jobs:
uses: KonishchevDmitry/binup/.github/workflows/test.yml@master

build:
name: Build for ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
name: Build for ${{ matrix.name }}
runs-on: ${{ matrix.os }}

strategy:
matrix:
config:
include:
# See https://bit.ly/github-runners for actual runners

- name: Linux
@@ -59,7 +59,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.os }}
name: ${{ matrix.os }}
path: ${{ steps.archive.outputs.name }}
if-no-files-found: error
compression-level: 0

0 comments on commit 7673ecf

Please sign in to comment.