Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Disquse committed Oct 11, 2024
0 parents commit be2ab95
Show file tree
Hide file tree
Showing 7 changed files with 738 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Release

on:
push:
branches: [ "master" ]

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3

- name: Run premake
uses: eariassoto/setup-premake@v1
with:
version: '5.0.0-beta1'
action: 'vs2022'

- name: Setup MSBuild
uses: microsoft/[email protected]

- name: Build solution
run: msbuild ./build/megu-memleakfix.sln /p:Configuration=Release /p:Platform=Win32

- name: Make release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
title: "Latest Build"
files: |
./bin/Release/*.asi
Loading

0 comments on commit be2ab95

Please sign in to comment.