mirror of
https://github.com/2dust/v2rayN.git
synced 2026-07-26 09:52:05 +03:00
* Add files via upload * Update build-all.yml * Update build-linux.yml * Update build-osx.yml * Update build-windows-desktop.yml * Update build-windows-x86.yml * Update build-windows.yml * Update package-zip.yml * Update build-linux.yml * Update build-osx.yml * Update build-windows-x86.yml * Update package-zip.yml * Update upload-sign.yml * Update pub-key.yml * Update README.md --------- Co-authored-by: 2dust <31833384+2dust@users.noreply.github.com>
88 lines
1.9 KiB
YAML
88 lines
1.9 KiB
YAML
name: release macOS
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
release_tag:
|
|
required: false
|
|
type: string
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
permissions:
|
|
contents: write
|
|
actions: read
|
|
|
|
jobs:
|
|
build:
|
|
uses: ./.github/workflows/build.yml
|
|
with:
|
|
target: macos
|
|
|
|
release-zip:
|
|
if: inputs.release_tag != ''
|
|
needs: build
|
|
uses: ./.github/workflows/package-zip.yml
|
|
with:
|
|
target: macos
|
|
release_tag: ${{ inputs.release_tag }}
|
|
secrets: inherit
|
|
|
|
dmg:
|
|
name: package and release macOS dmg
|
|
if: inputs.release_tag != ''
|
|
needs: build
|
|
strategy:
|
|
matrix:
|
|
arch: [ x64, arm64 ]
|
|
runs-on: macos-latest
|
|
env:
|
|
Arch: |-
|
|
${{
|
|
case(
|
|
matrix.arch == 'x64', '64',
|
|
matrix.arch
|
|
)
|
|
}}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7
|
|
|
|
- name: Restore build artifacts
|
|
uses: actions/download-artifact@v8
|
|
with:
|
|
name: ${{ matrix.arch }}
|
|
path: v2rayN-macos-${{ env.Arch }}
|
|
|
|
- name: Setup create-dmg
|
|
run: brew install create-dmg
|
|
|
|
- name: Ensure script permissions
|
|
run: chmod 755 package-osx.sh
|
|
|
|
- name: Package dmg
|
|
run: ./package-osx.sh macos-$Arch v2rayN-macos-$Arch ${{ inputs.release_tag }}
|
|
|
|
- name: Upload dmg artifact
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: release-dmg-${{ matrix.arch }}
|
|
path: v2rayN*.dmg
|
|
if-no-files-found: error
|
|
|
|
release-dmg:
|
|
name: sign and upload macOS dmg
|
|
if: inputs.release_tag != ''
|
|
needs: dmg
|
|
strategy:
|
|
matrix:
|
|
arch: [ x64, arm64 ]
|
|
uses: ./.github/workflows/upload-sign.yml
|
|
with:
|
|
release_tag: ${{ inputs.release_tag }}
|
|
artifact_name: release-dmg-${{ matrix.arch }}
|
|
file_pattern: '*.dmg'
|
|
secrets:
|
|
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
|