Skip to content

Commit 67544e3

Browse files
committed
Merge branch 'release/1.1.5'
2 parents f69b5db + e730e70 commit 67544e3

File tree

5 files changed

+68
-13
lines changed

5 files changed

+68
-13
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 diverger
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

RELEASE_NOTES.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
1-
# Release Notes Template
1+
# Release Notes
22

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

5-
## 🚀 GH OBS Helper Release v1.1.4
5+
## 🚀 GH OBS Helper Release v1.1.5
6+
7+
### 🐛 Bug Fixes
8+
- Update README.md
69

7-
### 🎯 What's New
8-
- Minor bug fixes
910

1011
### 🛠️ Usage Example
1112
```yaml
1213
- name: Upload to OBS
1314
id: upload
14-
uses: diverger/[email protected].4
15+
uses: diverger/[email protected].5
1516
with:
1617
access_key: ${{ secrets.OBS_ACCESS_KEY }}
1718
secret_key: ${{ secrets.OBS_SECRET_KEY }}
1819
region: 'cn-north-4'
1920
bucket: 'my-bucket'
2021
operation: 'upload'
2122
local_path: 'dist/**/*'
22-
obs_path: 'releases/v1.1.4/'
23+
obs_path: 'releases/v1.1.5/'
2324
public_read: true
2425

2526
- name: Use uploaded file URLs
@@ -28,9 +29,5 @@ Copy this template to `RELEASE_NOTES.md` before creating a release tag to provid
2829
echo "All URLs: ${{ steps.upload.outputs.upload_urls }}"
2930
```
3031
31-
### 🙏 Contributors
32-
- Thank contributors
33-
- Mention community feedback
34-
3532
---
36-
**Full Changelog**: https://github.com/diverger/gh-obs-helper/compare/v1.1.3...v1.1.4
33+
**Full Changelog**: https://github.com/diverger/gh-obs-helper/compare/v1.1.4...v1.1.5

RELEASE_NOTES_ARCHIVE.md

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

55
---
66

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

RELEASE_NOTES_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Release Notes Template
1+
# Release Notes
22

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

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.4",
3+
"version": "1.1.5",
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)