Skip to content
This repository was archived by the owner on Mar 28, 2022. It is now read-only.

Commit 320c864

Browse files
committed
feat: upload artifacts to aliyun oss
1 parent 524ce06 commit 320c864

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

.github/workflows/release.yml

+16-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Release hrp cli binaries
22

33
on:
4+
push:
45
release:
56
types: [created]
67

@@ -19,8 +20,19 @@ jobs:
1920
steps:
2021
- name: Checkout code
2122
uses: actions/checkout@v2
23+
- name: Setup aliyun OSS
24+
uses: manyuanrong/[email protected]
25+
with:
26+
endpoint: "oss-cn-beijing.aliyuncs.com"
27+
access-key-id: ${{ secrets.ALIYUN_ACCESSKEY_ID }}
28+
access-key-secret: ${{ secrets.ALIYUN_ACCESSKEY_SECRET }}
29+
- name: Upload artifacts to aliyun OSS
30+
run: |
31+
pwd
32+
which ossutil
33+
ossutil cp -rf cli/scripts/install.sh oss://httprunner/
2234
- name: Release hrp cli binaries
23-
uses: wangyoucao577/go-release-action@v1.22
35+
uses: wangyoucao577/go-release-action@v1.23
2436
with:
2537
github_token: ${{ secrets.GITHUB_TOKEN }}
2638
goos: ${{ matrix.goos }}
@@ -29,15 +41,6 @@ jobs:
2941
binary_name: "hrp"
3042
ldflags: "-s -w"
3143
extra_files: LICENSE README.md docs/CHANGELOG.md
32-
- name: Setup aliyun OSS
33-
uses: manyuanrong/[email protected]
34-
with:
35-
endpoint: "oss-cn-beijing.aliyuncs.com"
36-
access-key-id: ${{ secrets.ALIYUN_ACCESSKEY_ID }}
37-
access-key-secret: ${{ secrets.ALIYUN_ACCESSKEY_SECRET }}
38-
# - name: Upload to aliyun OSS
39-
# run: |
40-
# ossutil cp -rf cli/scripts/install.sh oss://httprunner/
41-
# ossutil cp -rf hrp-*.tar.gz hrp-*.zip oss://httprunner/ || true
42-
# - name: Test install.sh
43-
# run: bash -c "$(curl -ksSL https://httprunner.oss-cn-beijing.aliyuncs.com/install.sh)"
44+
post_command: mv "$RELEASE_ASSET_FILE" /home/runner/work/hrp/hrp/
45+
- name: Test install.sh
46+
run: bash -c "$(curl -ksSL https://httprunner.oss-cn-beijing.aliyuncs.com/install.sh)"

docs/CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Release History
22

3-
## v0.6.0 (2022-01-25)
3+
## v0.6.0 (2022-01-26)
44

55
- feat: implement `rendezvous` mechanism for data driven
6+
- feat: upload release artifacts to aliyun oss
67
- change: remove sentry sdk
78

89
## v0.5.3 (2022-01-25)

0 commit comments

Comments
 (0)