chg: remove auto release message

This commit is contained in:
Hiddify
2023-10-08 12:01:05 +02:00
parent 85db5882f0
commit 1dd041270a
2 changed files with 7 additions and 6 deletions

View File

@@ -4,11 +4,11 @@
- **Android:** [Universal](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-android-universal.apk) - [Arm64](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-android-arm64.apk) - [Arm7](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-android-arm7.apk) - [x86_64](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-android-x86_64.apk) - **Android:** [Universal](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-android-universal.apk) - [Arm64](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-android-arm64.apk) - [Arm7](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-android-arm7.apk) - [x86_64](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-android-x86_64.apk)
- **Windows:** [x64 Setup](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-windows-x64-setup.exe) - [x64 Portable](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-windows-x64-portable.zip) - **Windows:** [x64 Setup](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-windows-x64-setup.zip) - [x64 Portable](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-windows-x64-portable.zip)
- **Linux:** [x64 AppImage](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-linux-x64.AppImage.zip) - **Linux:** [x64 AppImage](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-linux-x64.AppImage.zip)
- **macOS (v10.14+):** [Universal (x64, M series)](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-macos-universal.dmg) - **macOS (v10.14+):** [Universal (x64, M series)](https://github.com/hiddify/hiddify-next/releases/download/RELEASE_TAG/hiddify-macos-universal.zip)
**List of all changes:** [ChangeLog](https://github.com/hiddify/hiddify-next/blob/main/changelog.md) **List of all changes:** [ChangeLog](https://github.com/hiddify/hiddify-next/blob/main/changelog.md)

View File

@@ -291,13 +291,14 @@ jobs:
ls -R ./out ls -R ./out
ls -R ./.github/ ls -R ./.github/
ls -R ./.git/ ls -R ./.git/
mv out/hiddify-android-market.aab hiddify-android-market.aab
- name: prepare_release_message - name: prepare_release_message
run: | run: |
pip install gitchangelog pystache mustache markdown pip install gitchangelog pystache mustache markdown
prelease=$(curl --silent "https://api.github.com/repos/hiddify/hiddify-next/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")') # prelease=$(curl --silent "https://api.github.com/repos/hiddify/hiddify-next/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")')
current="${{ github.ref_name }}" # current="${{ github.ref_name }}"
gitchangelog $prelease..$current > release.md # gitchangelog $prelease..$current > release.md
sed 's|RELEASE_TAG|${{ github.ref_name }}|g' ./.github/release_message.md >> release.md sed 's|RELEASE_TAG|${{ github.ref_name }}|g' ./.github/release_message.md >> release.md
- name: Upload Release - name: Upload Release
@@ -320,5 +321,5 @@ jobs:
serviceAccountJson: service_account.json serviceAccountJson: service_account.json
packageName: app.hiddify.com packageName: app.hiddify.com
releaseName: ${{ github.ref }} releaseName: ${{ github.ref }}
releaseFiles: ./out/hiddify-android-market.aab releaseFiles: ./hiddify-android-market.aab
track: internal track: internal