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 b85aed8 commit b0bd24bCopy full SHA for b0bd24b
.github/workflows/postman.yml
@@ -75,7 +75,7 @@ jobs:
75
run: |
76
ext=${{ matrix.extension }}
77
file=$(ls postman*${ext})
78
- version=$(python3 -c "import re; print(re.match(r'postman.*(([0-9]+\.){2}[0-9]+).*${ext}', '${file}').group(1))")
+ version=$(cat postman/app/resources/app/package.json | jq .version -r)
79
echo "Postman Version = ${version}"
80
echo "VERSION=${version}" >> $GITHUB_ENV
81
rm -v "${file}"
@@ -105,7 +105,8 @@ jobs:
105
106
- name : "Create Postman archive"
107
108
- tar --xz -cf postman-${{ matrix.os_type }}-${{ env.VERSION }}.tar.xz ./postman*
+ mv ./postman* Postman
109
+ tar --xz -cf postman-${{ matrix.os_type }}-${{ env.VERSION }}.tar.xz ./Postman
110
ls -lh
111
112
- name : "Calculate Checksum"
0 commit comments