Skip to content

Commit

Permalink
Adds YM support and many other fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Yazwh0 committed Feb 3, 2024
1 parent c45b514 commit b920cec
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 7 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build

on:
push:
branches: ["main"]
branches: ["main", "develop"]

jobs:
build-windows:
Expand Down Expand Up @@ -149,14 +149,30 @@ jobs:

- name: Create Github Release
uses: "marvinpinto/action-automatic-releases@latest"
if: github.ref == 'refs/heads/master'
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: true
prerelease: false
automatic_release_tag: "latest"
title: "Development Build"
title: "Release Build"
files: |
BitMagic-TheDebugger.Linux.tar.gz
BitMagic-TheEmulator.Windows.zip
BitMagic-TheDebugger.Windows.zip
X16ESetup.msi
version.txt
- name: Create Github Development Release
uses: "marvinpinto/action-automatic-releases@latest"
if: github.ref == 'refs/heads/develop'
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: true
automatic_release_tag: "develop"
title: "Development Build"
files: |
BitMagic-TheDebugger.Linux.tar.gz
BitMagic-TheEmulator.Windows.zip
BitMagic-TheDebugger.Windows.zip
X16ESetup.msi
version.txt
2 changes: 1 addition & 1 deletion BitMagic.Documentation
2 changes: 1 addition & 1 deletion BitMagic.TemplateEngine

0 comments on commit b920cec

Please sign in to comment.