Skip to content

Commit

Permalink
fix: Correct auto-release logic (#94)
Browse files Browse the repository at this point in the history
Testing adjusting the logic for validating is_tagged by comparing to
`false` directly
  • Loading branch information
lucaspopp-wbd authored Dec 11, 2024
1 parent f8021fb commit cf74199
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
user_format_type: csv
-
name: Publish release
if: ${{ !steps.tag.outputs.is_tagged }}
if: steps.tag.outputs.changed == 'true' && steps.tag.outputs.is_tagged == 'false'
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.tag.outputs.version_tag }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ _testmain.go
isp/api

.DS_Store
.vscode
1 change: 1 addition & 0 deletions isp/.trigger
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Wed Nov 20 10:34:59 PST 2024

0 comments on commit cf74199

Please sign in to comment.