-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/update GitHub workflow (#922)
* update gitignore and update build workflow for upload artifact * minor fix for upload build on main and master * change name of artifacts
- Loading branch information
1 parent
2df08a3
commit 1779501
Showing
2 changed files
with
102 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,35 @@ | ||
# Ignore all files, except those already included on git repository | ||
/* | ||
/src/common/version/GitRevision.h | ||
/src/common/libev/config.h | ||
# Ignore folder and files | ||
/bin | ||
/bin64 | ||
/Debug | ||
/Release | ||
/Nightly | ||
/backup/ | ||
/.git/ | ||
/.vscode/ | ||
/x64/ | ||
/x86/ | ||
/obj/ | ||
/build/ | ||
/mul | ||
/accounts/ | ||
/logs/ | ||
/save/ | ||
/web/ | ||
|
||
*.vs | ||
*.pid | ||
|
||
!.github | ||
# Ignore files | ||
*.bak | ||
*.log | ||
*.old | ||
*.tmp | ||
*.o | ||
*.obj | ||
*.exe | ||
*.vcxproj.* | ||
|
||
# Ignore git versioning file | ||
/src/common/version/GitRevision.h | ||
/src/common/libev/config.h |