Skip to content

Commit

Permalink
Merge .github from branch 'dev' into master [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
GamesTrap committed Oct 22, 2023
1 parent 659f041 commit 90fa464
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/composite/update-git-dependency/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ runs:
echo "DEPENDENCY_VERSION=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
elif [[ ${{inputs.update-method}} == "latest-tag" ]]; then
git fetch --tags
git checkout $(git tag --sort=-v:refname | grep -E ${{inputs.tag-regex}} | head -n 1)
echo "DEPENDENCY_VERSION=$(git tag --sort=-v:refname | grep -E ${{inputs.tag-regex}} | head -n 1)" >> "$GITHUB_OUTPUT"
git checkout $(git tag --sort=-v:refname | grep -E "${{inputs.tag-regex}}" | head -n 1)
echo "DEPENDENCY_VERSION=$(git tag --sort=-v:refname | grep -E "${{inputs.tag-regex}}" | head -n 1)" >> "$GITHUB_OUTPUT"
fi
cd $homePath
- name: Create Pull Request
Expand Down

0 comments on commit 90fa464

Please sign in to comment.