fixed GH action names

This commit is contained in:
Valmo Trindade
2025-01-26 13:09:36 -03:00
parent fd5353c333
commit 89c0e3f8cf
2 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
name: Publish
name: Pack on Pull Request
on:
pull_request:
@@ -35,9 +35,9 @@ jobs:
strategy:
matrix:
os_target:
- { os: "windows-latest", target: "i686-pc-windows-msvc", artifact: "armatak.dll", name: "armatak.dll" }
- { os: "windows-latest", target: "x86_64-pc-windows-msvc", artifact: "armatak.dll", name: "armatak_x64.dll" }
- { os: "ubuntu-latest", target: "x86_64-unknown-linux-gnu", artifact: "libarmatak.so", name: "armatak.so" }
- { os: "windows-latest", target: "i686-pc-windows-msvc", artifact: "armatak.dll" }
- { os: "windows-latest", target: "x86_64-pc-windows-msvc", artifact: "armatak.dll" }
- { os: "ubuntu-latest", target: "x86_64-unknown-linux-gnu", artifact: "libarmatak.so" }
runs-on: ${{ matrix.os_target.os }}
steps:
- name: Checkout Repo