Skip to content

Commit

Permalink
Add a deploy exception to yml to not deploy README changes (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
junalmeida authored May 12, 2020
1 parent 22dfea4 commit 2effd3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
PACKAGE_PROJECT: "./Autofac.Extensions.DependencyInjection.AzureFunctions/Autofac.Extensions.DependencyInjection.AzureFunctions.csproj"
BUILD_PLATFORM: "Any CPU"
BUILD_CONFIGURATION: "Release"
SHOULD_PUBLISH: ${{ github.ref == 'refs/heads/master' }}
SHOULD_PUBLISH: ${{ github.ref == 'refs/heads/master' && !contains(github.event.push.commits.*.message, 'readme') }}
PUBLISH_DIR: "${{ github.workspace }}/_publish"

jobs:
Expand Down

0 comments on commit 2effd3a

Please sign in to comment.