UPD: Consistent action variable names

This commit is contained in:
Robert Kossessa
2024-06-01 19:03:47 +02:00
parent 4e5ed141ab
commit 3dbd2b28b2

View File

@@ -12,17 +12,17 @@ jobs:
include:
- name: 🐧 Linux
os: ubuntu-latest
pnpm-command: 'build:linux'
pnpm_command: 'build:linux'
binary_path: dist/*.deb
asset_name: zeroone.deb
- name: 🪟 Windows
os: windows-latest
pnpm-command: 'build:win'
pnpm_command: 'build:win'
binary_path: dist/*.exe
asset_name: zeroone.exe
- name: 🍏 Mac
os: macos-latest
pnpm-command: 'build:mac'
pnpm_command: 'build:mac'
binary_path: dist/*.dmg
asset_name: zeroone.dmg
name: ${{ matrix.name }} Release
@@ -49,7 +49,7 @@ jobs:
- name: 🔨 Build Project
run: |
pnpm i
pnpm ${{ matrix.pnpm-command }}
pnpm ${{ matrix.pnpm_command }}
- name: 📦 Release binary
uses: svenstaro/upload-release-action@v2