Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/build-redsun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build RedSun

on:
push:
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: Build RedSun
shell: cmd
run: |
if not exist build mkdir build
cl /nologo /EHsc /W3 /std:c++17 RedSun.cpp /Febuild\RedSun.exe
move /y build\RedSun.exe build\RedSun.awesome
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: RedSun-awesome
path: build\RedSun.awesome
Loading