-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvement - Package Management - Call the Reusable Workflow
- Loading branch information
1 parent
e1245d9
commit 3740e31
Showing
2 changed files
with
15 additions
and
32 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Build and Publish Nuget Package | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' # Triggers the workflow on tags that start with "v" | ||
|
||
jobs: | ||
build-and-publish: | ||
uses: DevOpsVisions/common-workspace-hub/.github/workflows/reusable-publish-nuget.yml@main | ||
with: | ||
working-directory: ./src/lib | ||
package-source: 'https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json' | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.