mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
ci: upload releases to download.hysteria.network
This commit is contained in:
parent
dfa95811e8
commit
13c63cdfaf
1 changed files with 14 additions and 1 deletions
15
.github/workflows/release.yml
vendored
15
.github/workflows/release.yml
vendored
|
@ -16,6 +16,10 @@ jobs:
|
|||
- name: Check out
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Get version
|
||||
id: get_version
|
||||
run: echo "version=$(git describe --tags --always --match 'app/v*' | sed -n 's|app/\([^/-]*\)\(-.*\)\{0,1\}|\1|p')" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
|
@ -46,11 +50,20 @@ jobs:
|
|||
sha256sum $file >> build/hashes.txt
|
||||
done
|
||||
|
||||
- name: Upload
|
||||
- name: Upload GitHub
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: build/*
|
||||
|
||||
- name: Upload CF bucket
|
||||
uses: shallwefootball/upload-s3-action@v1.3.3
|
||||
with:
|
||||
aws_key_id: ${{ secrets.CF_KEY_ID }}
|
||||
aws_secret_access_key: ${{ secrets.CF_KEY }}
|
||||
aws_bucket: "https://bea223c61d5a41250d127bd67f51dfec.r2.cloudflarestorage.com/hydownload"
|
||||
source_dir: "build"
|
||||
destination_dir: "app/{{ steps.get_version.outputs.version }}"
|
||||
|
||||
- name: Publish to API
|
||||
run: |
|
||||
export HY_API_POST_KEY=${{ secrets.HY2_API_POST_KEY }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue