-
-
Notifications
You must be signed in to change notification settings - Fork 23
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
f67da6f
commit 77914c2
Showing
453 changed files
with
26,769 additions
and
19,504 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,45 +1,17 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: [dev] | ||
pull_request: | ||
workflow_dispatch: | ||
on: push | ||
|
||
jobs: | ||
pre_job: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
paths_ignore: '["**/README.md"]' | ||
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' | ||
build: | ||
needs: pre_job | ||
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | ||
runs-on: windows-latest | ||
steps: | ||
|
||
# Replace / with _ in ref name so that it can be used in a filename | ||
- uses: mad9000/actions-find-and-replace-string@2 | ||
id: sanitizeRef | ||
with: | ||
source: ${{ github.ref_name }} | ||
find: '/' | ||
replace: '_' | ||
# Get short-sha so that it can be used in a filename | ||
- uses: benjlevesque/[email protected] | ||
id: short-sha | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: "5.0.x" | ||
- run: dotnet build -c Release | ||
- run: dotnet build -c Debug | ||
|
||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: QSB-${{ steps.sanitizeRef.outputs.value }}-${{ steps.short-sha.outputs.sha }} | ||
path: .\QSB\Bin\Release | ||
name: QSB | ||
path: .\QSB\Bin\Debug |
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
Oops, something went wrong.