-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8adb263
commit 8868640
Showing
4 changed files
with
31 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# Set update schedule for GitHub Actions | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "nuget" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
# Check for updates to GitHub Actions every weekday | ||
interval: "weekly" |
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 |
---|---|---|
|
@@ -413,3 +413,5 @@ MigrationBackup/ | |
# End of https://www.toptal.com/developers/gitignore/api/rider,visualstudio | ||
|
||
Build/ | ||
|
||
redist/ |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
file(COPY ${CMAKE_SOURCE_DIR}/Client/bin/Release/ DESTINATION ${CMAKE_SOURCE_DIR}/redist/client/ FILES_MATCHING PATTERN "*.exe" PATTERN "*.dll" PATTERN "*.config") | ||
file(COPY ${CMAKE_SOURCE_DIR}/ListGenerator/bin/Release/ DESTINATION ${CMAKE_SOURCE_DIR}/redist/listgenerator/ FILES_MATCHING PATTERN "*.exe" PATTERN "*.dll" PATTERN "*.config") | ||
file(COPY ${CMAKE_SOURCE_DIR}/SelfUpdater/bin/Release/ DESTINATION ${CMAKE_SOURCE_DIR}/redist/selfupdater/ FILES_MATCHING PATTERN "*.exe" PATTERN "*.dll" PATTERN "*.config") |