new: auto replace signed exec
This commit is contained in:
5
.github/release_message.md
vendored
5
.github/release_message.md
vendored
@@ -1,5 +1,10 @@
|
||||
[](https://img.shields.io/github/downloads/hiddify/hiddify-next/RELEASE_TAG/)
|
||||
|
||||
<a href="https://apps.microsoft.com/detail/Hiddify/9pdfnl3qv2s5?mode=mini" target="_blank">
|
||||
<img src="https://github.com/hiddify/hiddify-next/assets/114227601/88210921-4d33-46e5-ac6a-89b4ffe13ae8" width="200">
|
||||
</a>
|
||||
|
||||
|
||||
**Release Highlights:**
|
||||
|
||||
-
|
||||
|
||||
25
.github/workflows/add_signed_microsft.yml
vendored
Normal file
25
.github/workflows/add_signed_microsft.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
name: Upload store MSIX to release
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [released] # Run the action when a GitHub release is published
|
||||
|
||||
schedule:
|
||||
- cron: '0 */6 * * *' # Run the action every 6 hours
|
||||
|
||||
workflow_dispatch: # Manually run the action
|
||||
|
||||
jobs:
|
||||
upload-store-msix-to-release:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Upload store MSIX to release
|
||||
uses: JasonWei512/Upload-Microsoft-Store-MSIX-Package-to-GitHub-Release@v1
|
||||
with:
|
||||
store-id: 9pdfnl3qv2s5
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
asset-name-pattern: Hiddify-Windows-Setup-x64 # Optional
|
||||
19
.github/workflows/build.yml
vendored
19
.github/workflows/build.yml
vendored
@@ -182,16 +182,15 @@ jobs:
|
||||
tree
|
||||
.\scripts\package_windows.ps1
|
||||
|
||||
# - name: Code Sign
|
||||
# if: ${{ inputs.upload-artifact && startsWith(matrix.platform,'windows') }}
|
||||
# uses: dlemstra/code-sign-action@v1
|
||||
# with:
|
||||
# certificate: '-----BEGIN CERTIFICATE-----\n${{ secrets.WINDOWS_SIGNING_KEY }}-----END CERTIFICATE-----\n'
|
||||
# password: '${{ secrets.WINDOWS_SIGNING_PASSWORD }}'
|
||||
# folder: 'out'
|
||||
# recursive: true
|
||||
|
||||
# description: 'Hiddify'
|
||||
- name: Code Sign
|
||||
if: ${{ inputs.upload-artifact && startsWith(matrix.platform,'windows') }}
|
||||
uses: dlemstra/code-sign-action@v1
|
||||
with:
|
||||
certificate: '${{ secrets.WINDOWS_SIGNING_KEY }}'
|
||||
password: '${{ secrets.WINDOWS_SIGNING_PASSWORD }}'
|
||||
folder: 'out'
|
||||
recursive: true
|
||||
description: 'Hiddify'
|
||||
|
||||
- name: Copy to out Android APK
|
||||
if: matrix.platform == 'android-apk'
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
display_name: HiddifyNext
|
||||
display_name: Hiddify
|
||||
publisher_display_name: Hiddify
|
||||
identity_name: Hiddify.HiddifyNext
|
||||
identity_name: Hiddify.Hiddify
|
||||
msix_version: 0.16.16.0
|
||||
logo_path: windows\runner\resources\app_icon.ico
|
||||
capabilities: internetClient, internetClientServer, privateNetworkClientServer
|
||||
|
||||
Reference in New Issue
Block a user