From 15244d20d03099008ab4fd5b335c6714140bf93a Mon Sep 17 00:00:00 2001 From: Robert Kossessa Date: Wed, 29 May 2024 19:16:21 +0200 Subject: [PATCH] UPD: Job names --- .github/workflows/release.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 23039e5..1bff0ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,22 +6,25 @@ on: workflow_dispatch: jobs: release: - name: 🚀 Release strategy: matrix: include: - - os: ubuntu-latest + - name: 🐧 Linux + os: ubuntu-latest pnpm-command: 'build:linux' binary_path: dist/*.deb asset_name: zeroone-${{ github.ref }}.deb - - os: windows-latest + - name: 🪟 Windows + os: windows-latest pnpm-command: 'build:win' binary_path: dist/*.exe asset_name: zeroone-${{ github.ref }}.exe - - os: macos-latest + - name: 🍏 Mac + os: macos-latest pnpm-command: 'build:mac' binary_path: dist/*.dmg asset_name: zeroone-${{ github.ref }}.dmg + name: ${{ matrix.name }} Release 🚀 runs-on: ${{ matrix.os }} steps: - name: 🚚 Checkout latest code