1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00

Create extra distribution

This commit is contained in:
Shelikhoo 2021-03-06 05:14:51 +00:00
parent 2a5aa8d3fa
commit 8479e2315e
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316

View File

@ -170,6 +170,12 @@ jobs:
with:
path: build_artifacts
- name: Create extra package
run: |
pushd ./release/extra/
zip -9vr ../../build/v2ray-extra.zip .
popd
- name: Generate shasum
run: |
go get -v github.com/v2fly/V2BuildAssist/v2buildutil
@ -205,6 +211,11 @@ jobs:
name: Release.unsigned.dgst
path: build_artifacts/Release.unsigned.dgst
- uses: actions/upload-artifact@v2
with:
name: v2ray-extra.zip
path: build_artifacts/v2ray-extra.zip
- name: Upload Release.unsigned related files
uses: svenstaro/upload-release-action@v2
if: github.event_name == 'release'
@ -213,3 +224,12 @@ jobs:
file_glob: true
file: build_artifacts/Release.unsigned*
tag: ${{ github.ref }}
- name: Upload extra package
uses: svenstaro/upload-release-action@v2
if: github.event_name == 'release'
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file_glob: true
file: build_artifacts/v2ray-extra.zip
tag: ${{ github.ref }}