Skip to content

Commit cf74199

Browse files
fix: Correct auto-release logic (#94)
Testing adjusting the logic for validating is_tagged by comparing to `false` directly
1 parent f8021fb commit cf74199

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
user_format_type: csv
4343
-
4444
name: Publish release
45-
if: ${{ !steps.tag.outputs.is_tagged }}
45+
if: steps.tag.outputs.changed == 'true' && steps.tag.outputs.is_tagged == 'false'
4646
uses: softprops/action-gh-release@v1
4747
with:
4848
tag_name: ${{ steps.tag.outputs.version_tag }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ _testmain.go
2626
isp/api
2727

2828
.DS_Store
29+
.vscode

isp/.trigger

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Wed Nov 20 10:34:59 PST 2024

0 commit comments

Comments
 (0)