Skip to content

Commit fa50757

Browse files
committed
Merge branch 'release/1.1.6'
2 parents b095ae6 + 1a72174 commit fa50757

File tree

4 files changed

+74
-10
lines changed

4 files changed

+74
-10
lines changed

RELEASE_NOTES.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
# Release Notes
22

3-
Copy this template to `RELEASE_NOTES.md` before creating a release tag to provide custom release notes.
4-
5-
## 🚀 GH OBS Helper Release v1.1.5
6-
7-
### 🐛 Bug Fixes
8-
- Update README.md
3+
## 🚀 GH OBS Helper Release v1.1.6
94

5+
### 🔧 Changes
6+
- Update confidentials in workflows
107

118
### 🛠️ Usage Example
129
```yaml
1310
- name: Upload to OBS
1411
id: upload
15-
uses: diverger/[email protected].5
12+
uses: diverger/[email protected].6
1613
with:
1714
access_key: ${{ secrets.OBS_ACCESS_KEY }}
1815
secret_key: ${{ secrets.OBS_SECRET_KEY }}
1916
region: 'cn-north-4'
2017
bucket: 'my-bucket'
2118
operation: 'upload'
2219
local_path: 'dist/**/*'
23-
obs_path: 'releases/v1.1.5/'
20+
obs_path: 'releases/v1.1.6/'
2421
public_read: true
2522

2623
- name: Use uploaded file URLs
@@ -30,4 +27,4 @@ Copy this template to `RELEASE_NOTES.md` before creating a release tag to provid
3027
```
3128
3229
---
33-
**Full Changelog**: https://github.com/diverger/gh-obs-helper/compare/v1.1.4...v1.1.5
30+
**Full Changelog**: https://github.com/diverger/gh-obs-helper/compare/v1.1.5...v1.1.6

RELEASE_NOTES_ARCHIVE.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,40 @@ This file contains archived release notes for older versions of GH OBS Helper.
66

77
Copy this template to `RELEASE_NOTES.md` before creating a release tag to provide custom release notes.
88

9+
## 🚀 GH OBS Helper Release v1.1.5
10+
11+
### 🐛 Bug Fixes
12+
- Update README.md
13+
14+
15+
### 🛠️ Usage Example
16+
```yaml
17+
- name: Upload to OBS
18+
id: upload
19+
uses: diverger/[email protected]
20+
with:
21+
access_key: ${{ secrets.OBS_ACCESS_KEY }}
22+
secret_key: ${{ secrets.OBS_SECRET_KEY }}
23+
region: 'cn-north-4'
24+
bucket: 'my-bucket'
25+
operation: 'upload'
26+
local_path: 'dist/**/*'
27+
obs_path: 'releases/v1.1.5/'
28+
public_read: true
29+
30+
- name: Use uploaded file URLs
31+
run: |
32+
echo "First file URL: ${{ steps.upload.outputs.first_upload_url }}"
33+
echo "All URLs: ${{ steps.upload.outputs.upload_urls }}"
34+
```
35+
36+
---
37+
**Full Changelog**: https://github.com/diverger/gh-obs-helper/compare/v1.1.4...v1.1.5
38+
39+
---
40+
41+
Copy this template to `RELEASE_NOTES.md` before creating a release tag to provide custom release notes.
42+
943
## 🚀 GH OBS Helper Release v1.1.4
1044

1145
### 🎯 What's New
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Release Notes
2+
3+
Copy this template to `RELEASE_NOTES.md` before creating a release tag to provide custom release notes.
4+
5+
## 🚀 GH OBS Helper Release v1.1.5
6+
7+
### 🐛 Bug Fixes
8+
- Update README.md
9+
10+
11+
### 🛠️ Usage Example
12+
```yaml
13+
- name: Upload to OBS
14+
id: upload
15+
uses: diverger/[email protected]
16+
with:
17+
access_key: ${{ secrets.OBS_ACCESS_KEY }}
18+
secret_key: ${{ secrets.OBS_SECRET_KEY }}
19+
region: 'cn-north-4'
20+
bucket: 'my-bucket'
21+
operation: 'upload'
22+
local_path: 'dist/**/*'
23+
obs_path: 'releases/v1.1.5/'
24+
public_read: true
25+
26+
- name: Use uploaded file URLs
27+
run: |
28+
echo "First file URL: ${{ steps.upload.outputs.first_upload_url }}"
29+
echo "All URLs: ${{ steps.upload.outputs.upload_urls }}"
30+
```
31+
32+
---
33+
**Full Changelog**: https://github.com/diverger/gh-obs-helper/compare/v1.1.4...v1.1.5

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gh-obs-helper",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"description": "GitHub Action for Huawei Cloud OBS operations with unlimited file support and wildcard patterns",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)