diff options
| author | Caleb Mabry <36182383+caleb-mabry@users.noreply.github.com> | 2022-12-17 05:44:12 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-17 11:44:12 +0100 |
| commit | 8a0404f424fe13dbe91b643421a1c25d794b4957 (patch) | |
| tree | 1fc0115c29ff5c4e85520b64359c3d3a0d91f65b | |
| parent | 59f5cccfbf0ad3dcb60fcff01e65dd6dd0eac7e5 (diff) | |
Gitignore bin (#867)
* Adding MS
* Ignore bin folder contents but keep folder
* Undo a file change
* On pull request
| -rw-r--r-- | .github/workflows/build.yml | 2 | ||||
| -rw-r--r-- | .gitignore | 10 | ||||
| -rw-r--r-- | bin/.gitignore | 3 |
3 files changed, 7 insertions, 8 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2ea68556..518cd977 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,6 @@ name: CI build -on: [push] +on: [push, pull_request] env: ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' @@ -15,13 +15,9 @@ moc* base-full/ logs/ bass.lib -bin/base/background/ -bin/base/cases/ -bin/base/characters/ -bin/base/evidence/ -bin/base/fonts/ -bin/base/sounds/ -bin/user* + +bin/* + bins/ build/ release/ diff --git a/bin/.gitignore b/bin/.gitignore new file mode 100644 index 00000000..e7a210ec --- /dev/null +++ b/bin/.gitignore @@ -0,0 +1,3 @@ +* +*/ +!.gitignore
\ No newline at end of file |
