We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c56e606 commit 1ef681cCopy full SHA for 1ef681c
action.yml
@@ -24,7 +24,11 @@ runs:
24
run: |
25
if [[ "${{ inputs.version }}" == "latest" ]]; then
26
# clone the latest version
27
- git clone https://github.com/PandasWhoCode/git-semver.git
+ git clone --depth 1 https://github.com/PandasWhoCode/git-semver.git
28
+ cd git-semver
29
+ git fetch origin 4af2d24294f6fb4de5584f4f5c7cd4d29b609909 # v0.2.7
30
+ git checkout 4af2d24294f6fb4de5584f4f5c7cd4d29b609909 # v0.2.7
31
+ cd ..
32
else
33
# clone the specified version
34
git clone --branch ${{ inputs.version }} https://github.com/PSanetra/git-semver.git
0 commit comments