Skip to content

Commit

Permalink
Merge pull request #17 from open-ephys/correct-actions
Browse files Browse the repository at this point in the history
Add logic to ensure deploy step is run
  • Loading branch information
bparks13 authored Oct 17, 2024
2 parents 96ca5a5 + b33c61f commit 3d423aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
name: Deploy Package
runs-on: ubuntu-latest
needs: [build]
if: github.event_name == 'release'
if: github.event_name == 'release' && always() && !failure() && !cancelled()

steps:
- name: Setup .NET
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<UseArtifactsOutput>true</UseArtifactsOutput>
<PackageIcon>icon.png</PackageIcon>
<VersionPrefix>0.1.0</VersionPrefix>
<VersionPrefix>0.2.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<LangVersion>10.0</LangVersion>
<Features>strict</Features>
Expand Down

0 comments on commit 3d423aa

Please sign in to comment.