Update badge link #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: . | |
- name: Donwload dependencies | |
run: | | |
Invoke-WebRequest https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/win64/nasm-2.16.01-win64.zip -O nasm.zip | |
Invoke-WebRequest https://deac-riga.dl.sourceforge.net/project/gnuwin32/grep/2.5.4/grep-2.5.4-bin.zip -O grep.zip | |
Invoke-WebRequest https://master.dl.sourceforge.net/project/gnuwin32/grep/2.5.4/grep-2.5.4-dep.zip?viasf=1 -O grep-dep.zip | |
mkdir nasm | |
mkdir grep | |
unzip nasm.zip nasm-2.16.01/nasm.exe -d nasm | |
unzip grep.zip bin/grep.exe -d grep | |
unzip grep-dep.zip bin/* -d grep | |
mv grep/bin/* . | |
mv nasm/nasm-2.16.01/nasm.exe ./nasm.exe | |
- name: Assemble injections | |
shell: cmd | |
run: | | |
mkdir bin | |
make src/inc/injections.inc |