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.
2 parents d292444 + 3b876b7 commit c39b6bbCopy full SHA for c39b6bb
.github/workflows/zip-and-release.yml
@@ -19,6 +19,7 @@ jobs:
19
20
- name: Zip plugin and update repo.xml
21
run: |
22
+ xmlstarlet ed --inplace --update "//extension/version" --value "${{ github.event.inputs.version }}" install.xml
23
zip -r ${{ github.event.repository.name }}-${{ github.event.inputs.version }}.zip . -x ".git/*" ".github/*" "repo.xml"
24
export SHA1SUM=`sha1sum "${{ github.event.repository.name }}-${{ github.event.inputs.version }}.zip" | awk '{ print $1 }'`
25
export ZIP_URL="https://github.com/${{ github.repository }}/releases/download/${{ github.event.inputs.version }}/${{ github.event.repository.name }}-${{ github.event.inputs.version }}.zip"
0 commit comments