Skip to content

Commit

Permalink
test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
x87 committed Jun 8, 2024
1 parent 1d7dd7c commit a0e2b0c
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CLEO 4 Release Build

on:
push:
branch:
- gh

jobs:
build:
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1

- name: Build Projects
shell: cmd
run: |
set PLUGIN_SDK_DIR=%GITHUB_WORKSPACE%\third-party\plugin-sdk
msbuild -m CLEO4.sln /property:Configuration=Release /property:Platform=GTASA
- name: Pack Base Archive
uses: ThirteenAG/zip-release@master
with:
path: ./.output/Release/*
type: "zip"
filename: CLEO4.zip
exclusions: "*.pdb *.lib *.exp"

- name: Upload Release
uses: ncipollo/release-action@main
with:
tag: test
prerelease: true
artifacts: "CLEO4.zip"

0 comments on commit a0e2b0c

Please sign in to comment.