mirror of
https://github.com/winterknife/SILVERPICK
synced 2026-06-08 18:21:15 +00:00
34 lines
735 B
YAML
34 lines
735 B
YAML
name: build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-x64-gcc:
|
|
runs-on: windows-latest
|
|
timeout-minutes: 5
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Set up MSYS2 (MINGW64)
|
|
uses: msys2/setup-msys2@v2
|
|
with:
|
|
msystem: MINGW64
|
|
update: true
|
|
install: base-devel mingw-w64-x86_64-toolchain vim
|
|
- name: Build PIC
|
|
run: |
|
|
make clean
|
|
make pic
|
|
- name: 'Upload artifacts'
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: SilverPick
|
|
path: |
|
|
Bin/SilverPick_x64.bin
|
|
Bin/Shellcode.h
|
|
retention-days: 7
|