Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,18 @@ concurrency:
cancel-in-progress: true

on:
workflow_dispatch: # Allow running the workflow manually from the GitHub UI
push:
branches:
- main

- 'main' # Run the workflow when pushing to the main branch
release:
types:
- published # Run the workflow when a new GitHub release is published
env:
servicelocator_sln : "vb2ae.ServiceLocator.MSDependencyInjection.sln"
package_feed: "https://api.nuget.org/v3/index.json"
nuget_folder: "\\packages"

jobs:
deployment:
runs-on: ubuntu-latest
Expand Down
Loading