Skip to content

typo

typo #40

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "master", "windows_pipelines" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-2022
defaults:
run:
shell: msys2 {0}
steps:
- uses: ilammy/setup-nasm@v1.4.0
- uses: microsoft/setup-msbuild@v1.1
- uses: actions/checkout@v3
- name: Build texture loader
working-directory: ./texture_loader
run: |
nasm hooks.s -f win -o hooks.obj
msbuild /p:Platform=x86 /p:Configuration=Release
shell: cmd
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW32
update: true
cache: true
install: mingw-w64-i686-gcc mingw-w64-i686-make
- name: Build pkr_extractor
working-directory: ./pkr_extractor
run: mingw32-make
- uses: actions/upload-artifact@v3
with:
path: texture_loader