Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actions tweaks #765

Merged
merged 2 commits into from
May 10, 2022
Merged
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions .github/workflows/Emscripten.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: CMake / Emscripten

on:
on:
push:
branches:
- '**' # only run on branches
pull_request:
release:
types: [created]
types: [published]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/Visual Studio.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Visual Studio (.sln)
on:
on:
push:
branches:
- '**' # only run on branches
pull_request:

jobs:
Expand All @@ -20,4 +22,4 @@ jobs:
uses: microsoft/[email protected]

- name: Build
run: msbuild.exe vs/32blit.sln
run: msbuild.exe vs/32blit.sln
4 changes: 3 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: CMake

on:
push:
branches:
- '**' # only run on branches
pull_request:
release:
types: [created]
types: [published]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
Expand Down