UPD: Job names

This commit is contained in:
Robert Kossessa
2024-05-29 19:16:21 +02:00
parent 66ccf8d5dc
commit 15244d20d0

View File

@@ -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