mirror of
https://github.com/encounter/mwccwrap.git
synced 2026-07-10 12:18:39 -07:00
31 lines
534 B
YAML
31 lines
534 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Install MinGW-w64
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y gcc-mingw-w64-i686
|
|
|
|
- name: Build
|
|
run: make
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: mwccwrap
|
|
path: |
|
|
mwccwrap.exe
|
|
PluginLib2.dll
|
|
PluginLib3.dll
|
|
ASINTPPC.DLL
|