generated from DbUp/dbup-provider-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use reusable workflow for build (#13)
* Only target netstandard 2.0 * Removed install of net 2.0 * Moved CI optimisations into just the main project * Fix Readme and template * Build on Ubuntu (#12) * Build on Ubuntu * Used bash variables * Used re-usable workflow * Specified the branch * Used .github/workflow/ path for workflows * Fix name * Used root workflow folder * passed secret explicitly * fix * Not pass secret * Changed branch # Conflicts: # .github/workflows/main.yml
- Loading branch information
Showing
4 changed files
with
28 additions
and
65 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Publish DbUp Packages to NuGet | ||
|
||
on: | ||
release: | ||
types: [ published ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish: | ||
name: Publish Package | ||
uses: DbUp/Universe/.github/workflows/publish-release.yml@reusable |
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,13 @@ | ||
name: Test Report | ||
run-name: Generate Test Report for workflow ${{ github.event.workflow_run.name }} run ${{ github.event.workflow_run.run_number }} branch ${{ github.event.workflow_run.head_branch }} | ||
|
||
on: | ||
workflow_run: | ||
workflows: [ "CI" ] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
report: | ||
name: Test Report 🧪 | ||
uses: DbUp/Universe/.github/workflows/test-report.yml@reusable |
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