git: Fixed release CI not reading version correctly
This commit is contained in:
parent
fc105ecc3d
commit
6c047f01f9
26
.github/workflows/release.yml
vendored
26
.github/workflows/release.yml
vendored
@ -14,13 +14,25 @@ jobs:
|
|||||||
name: Release Update Repos
|
name: Release Update Repos
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: 📜 Verify version and set version variable
|
||||||
|
run: |
|
||||||
|
project_version=`cat ImHex/VERSION`
|
||||||
|
tag_version="${{github.event.release.tag_name}}"
|
||||||
|
tag_version="${tag_version:1}"
|
||||||
|
if [ "$project_version" != "$tag_version" ]; then
|
||||||
|
echo "::warning::$project_version and $tag_version are not the same ! Refusing to populate release"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "IMHEX_VERSION=$project_version" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: 🎫 Create PatternLanguage release
|
- name: 🎫 Create PatternLanguage release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
env:
|
env:
|
||||||
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
||||||
if: "${{ env.RELEASE_TOKEN != '' }}"
|
if: "${{ env.RELEASE_TOKEN != '' }}"
|
||||||
with:
|
with:
|
||||||
tag: ImHex-v${{env.IMHEX_VERSION}}
|
tag: ImHex-v${{ env.IMHEX_VERSION }}
|
||||||
repo: PatternLanguage
|
repo: PatternLanguage
|
||||||
token: ${{ secrets.RELEASE_TOKEN }}
|
token: ${{ secrets.RELEASE_TOKEN }}
|
||||||
|
|
||||||
@ -30,7 +42,7 @@ jobs:
|
|||||||
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
||||||
if: "${{ env.RELEASE_TOKEN != '' }}"
|
if: "${{ env.RELEASE_TOKEN != '' }}"
|
||||||
with:
|
with:
|
||||||
tag: ImHex-v${{env.IMHEX_VERSION}}
|
tag: ImHex-v${{ env.IMHEX_VERSION }}
|
||||||
repo: ImHex-Patterns
|
repo: ImHex-Patterns
|
||||||
token: ${{ secrets.RELEASE_TOKEN }}
|
token: ${{ secrets.RELEASE_TOKEN }}
|
||||||
|
|
||||||
@ -105,8 +117,8 @@ jobs:
|
|||||||
|
|
||||||
- name: 🟩 Rename artifacts when needed
|
- name: 🟩 Rename artifacts when needed
|
||||||
run: |
|
run: |
|
||||||
mv "Windows Portable x86_64.zip" imhex-${{env.IMHEX_VERSION}}-Windows-Portable-x86_64.zip
|
mv "Windows Portable x86_64.zip" imhex-${{ env.IMHEX_VERSION }}-Windows-Portable-x86_64.zip
|
||||||
mv "Windows Portable NoGPU x86_64.zip" imhex-${{env.IMHEX_VERSION}}-Windows-Portable-NoGPU-x86_64.zip
|
mv "Windows Portable NoGPU x86_64.zip" imhex-${{ env.IMHEX_VERSION }}-Windows-Portable-NoGPU-x86_64.zip
|
||||||
|
|
||||||
- name: ⬆️ Upload everything to release
|
- name: ⬆️ Upload everything to release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
@ -117,9 +129,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cp ImHex/dist/Arch/PKGBUILD .
|
cp ImHex/dist/Arch/PKGBUILD .
|
||||||
|
|
||||||
hash=`md5sum imhex-${{env.IMHEX_VERSION}}-ArchLinux-x86_64.pkg.tar.zst | cut -d ' ' -f 1`
|
hash=`md5sum imhex-${{ env.IMHEX_VERSION }}-ArchLinux-x86_64.pkg.tar.zst | cut -d ' ' -f 1`
|
||||||
|
|
||||||
sed -i 's/%version%/${{env.IMHEX_VERSION}}/g' PKGBUILD
|
sed -i 's/%version%/${{ env.IMHEX_VERSION }}/g' PKGBUILD
|
||||||
sed -i "s/(SKIP)/($hash)/g" PKGBUILD
|
sed -i "s/(SKIP)/($hash)/g" PKGBUILD
|
||||||
|
|
||||||
- name: ⬆️ Publish AUR package
|
- name: ⬆️ Publish AUR package
|
||||||
@ -135,7 +147,7 @@ jobs:
|
|||||||
commit_username: iTrooz
|
commit_username: iTrooz
|
||||||
commit_email: itrooz@protonmail.com
|
commit_email: itrooz@protonmail.com
|
||||||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
||||||
commit_message: Bump to version ${{env.IMHEX_VERSION}}
|
commit_message: Bump to version ${{ env.IMHEX_VERSION }}
|
||||||
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519
|
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519
|
||||||
|
|
||||||
release-update-winget:
|
release-update-winget:
|
||||||
|
2
lib/external/pattern_language
vendored
2
lib/external/pattern_language
vendored
@ -1 +1 @@
|
|||||||
Subproject commit c5e7c9e6243f5546b9732121164dc281463d61ce
|
Subproject commit e71a16e663450853071c8266ae02d26bd4841d38
|
Loading…
Reference in New Issue
Block a user