Skip to content

Commit

Permalink
Fix: Build step conditional was incorrect (#65)
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Watkins <[email protected]>
  • Loading branch information
ModeSevenIndustrialSolutions authored Jul 28, 2024
1 parent 0059b19 commit 1947832
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/increment-semantic-tag/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ runs:
fi
echo "Input tag: $TAG"
echo "Bump type: $TYPE"
echo "Increment type: $TYPE"
if [[ "$TAG" == v* ]]; then
echo "Converting tag to purely numeric equivalent"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-gha-workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ jobs:

builds:
name: "Python Builds"
needs: [repository]
needs:
- repository
runs-on: "ubuntu-latest"
continue-on-error: true
if: needs.repository.outputs.python == true
Expand Down

0 comments on commit 1947832

Please sign in to comment.