Skip to content

Commit d48e960

Browse files
authored
Merge pull request #233 from arduino/fix-semver-version
fix semver-tool version. 3.2.0 is downloaded but 3.0.0 is still used.
2 parents ad57ba0 + e70d422 commit d48e960

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

workflow-templates/dependabot/workflow-template-copies/.github/workflows/release-go-crosscompile-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
id: prerelease
149149
run: |
150150
wget -q -P /tmp https://github.com/fsaintjacques/semver-tool/archive/3.2.0.zip
151-
unzip -p /tmp/3.0.0.zip semver-tool-3.0.0/src/semver >/tmp/semver && chmod +x /tmp/semver
151+
unzip -p /tmp/3.2.0.zip semver-tool-3.2.0/src/semver >/tmp/semver && chmod +x /tmp/semver
152152
if [[ "$(/tmp/semver get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "::set-output name=IS_PRE::true"; fi
153153
154154
- name: Create Github Release and upload artifacts

workflow-templates/dependabot/workflow-template-copies/.github/workflows/release-go-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
id: prerelease
142142
run: |
143143
wget -q -P /tmp https://github.com/fsaintjacques/semver-tool/archive/3.2.0.zip
144-
unzip -p /tmp/3.0.0.zip semver-tool-3.0.0/src/semver >/tmp/semver && chmod +x /tmp/semver
144+
unzip -p /tmp/3.2.0.zip semver-tool-3.2.0/src/semver >/tmp/semver && chmod +x /tmp/semver
145145
if [[ "$(/tmp/semver get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "::set-output name=IS_PRE::true"; fi
146146
147147
- name: Create Github Release and upload artifacts

workflow-templates/release-go-crosscompile-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
id: prerelease
149149
run: |
150150
wget -q -P /tmp https://github.com/fsaintjacques/semver-tool/archive/3.2.0.zip
151-
unzip -p /tmp/3.0.0.zip semver-tool-3.0.0/src/semver >/tmp/semver && chmod +x /tmp/semver
151+
unzip -p /tmp/3.2.0.zip semver-tool-3.2.0/src/semver >/tmp/semver && chmod +x /tmp/semver
152152
if [[ "$(/tmp/semver get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "::set-output name=IS_PRE::true"; fi
153153
154154
- name: Create Github Release and upload artifacts

workflow-templates/release-go-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
id: prerelease
142142
run: |
143143
wget -q -P /tmp https://github.com/fsaintjacques/semver-tool/archive/3.2.0.zip
144-
unzip -p /tmp/3.0.0.zip semver-tool-3.0.0/src/semver >/tmp/semver && chmod +x /tmp/semver
144+
unzip -p /tmp/3.2.0.zip semver-tool-3.2.0/src/semver >/tmp/semver && chmod +x /tmp/semver
145145
if [[ "$(/tmp/semver get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "::set-output name=IS_PRE::true"; fi
146146
147147
- name: Create Github Release and upload artifacts

0 commit comments

Comments
 (0)