|
1 | 1 | name: Release hrp cli binaries
|
2 | 2 |
|
3 | 3 | on:
|
| 4 | + push: |
4 | 5 | release:
|
5 | 6 | types: [created]
|
6 | 7 |
|
|
19 | 20 | steps:
|
20 | 21 | - name: Checkout code
|
21 | 22 | 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/ |
22 | 34 | - name: Release hrp cli binaries
|
23 |
| - uses: wangyoucao577/go-release-action@v1.22 |
| 35 | + uses: wangyoucao577/go-release-action@v1.23 |
24 | 36 | with:
|
25 | 37 | github_token: ${{ secrets.GITHUB_TOKEN }}
|
26 | 38 | goos: ${{ matrix.goos }}
|
|
29 | 41 | binary_name: "hrp"
|
30 | 42 | ldflags: "-s -w"
|
31 | 43 | 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)" |
0 commit comments