Skip to content

Commit d419d0e

Browse files
committed
docs(release): update release notes for v1.2.0 and archive v1.1.9
- Update RELEASE_NOTES.md for v1.2.0 release - Archive v1.1.9 release notes in RELEASE_NOTES_ARCHIVE.md - Remove unnecessary sections and simplify content - Update example usage for v1.2.0 - Add link to full changelog for v1.2.0 Signed-off-by: diverger <[email protected]>
1 parent 28a87d0 commit d419d0e

File tree

2 files changed

+63
-28
lines changed

2 files changed

+63
-28
lines changed

RELEASE_NOTES.md

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

3-
## 🚀 GH OBS Helper Release v1.1.9
4-
5-
### 🎯 What's New
6-
- **Workflow Fixes**: Repaired corrupted GitHub workflow configuration
7-
- **Path Consistency**: Ensured all OBS paths use consistent repository folder structure
8-
- **CI/CD Stability**: Improved workflow reliability and maintainability
3+
## 🚀 GH OBS Helper Release v1.2.0
94

105
### 🔧 Changes
11-
- **Workflow Configuration**: Fixed corrupted `test-upload.yml` workflow inputs section
12-
- **OBS Path Standardization**: Confirmed all workflow files use "gh-obs-helper/" path prefix consistently
13-
14-
### 🐛 Bug Fixes
15-
- **Critical Fix**: Resolved corrupted YAML structure in `test-upload.yml` workflow file
16-
- **Input Validation**: Fixed malformed workflow inputs that were preventing proper execution
17-
- **Path Consistency**: Ensured single file upload test uses correct OBS path with repository prefix
18-
19-
### 📋 Known Issues
20-
- No known issues in this release
21-
- All workflows have been validated and are functioning correctly
226

23-
### 🔗 Migration Guide
24-
- No breaking changes from v1.1.8
25-
- All existing workflows remain fully compatible
26-
- Workflow fixes are internal improvements that don't affect user-facing functionality
7+
- **MAJOR**: Upgraded `esdk-obs-nodejs` from 3.24.3 to 3.25.6 (latest stable version)
8+
- **No Breaking Changes**: All existing workflows remain fully compatible
279

2810
### 🛠️ Usage Example
11+
2912
```yaml
3013
- name: Upload to OBS
3114
id: upload
32-
uses: diverger/gh-obs-helper@v1.1.9
15+
uses: diverger/gh-obs-helper@v1.2.0
3316
with:
3417
access_key: ${{ secrets.OBS_ACCESS_KEY }}
3518
secret_key: ${{ secrets.OBS_SECRET_KEY }}
3619
region: 'cn-north-4'
3720
bucket: 'my-bucket'
3821
operation: 'upload'
3922
local_path: 'dist/**/*'
40-
obs_path: 'gh-obs-helper/releases/v1.1.9/'
23+
obs_path: 'gh-obs-helper/releases/v1.2.0/'
4124
public_read: true
4225

4326
- name: Use uploaded file URLs
@@ -46,9 +29,6 @@
4629
echo "All URLs: ${{ steps.upload.outputs.upload_urls }}"
4730
```
4831
49-
### 🙏 Contributors
50-
- Thank contributors
51-
- Mention community feedback
52-
5332
---
54-
**Full Changelog**: https://github.com/diverger/gh-obs-helper/compare/v1.1.8...v1.1.9
33+
34+
**Full Changelog**: [v1.1.9...v1.2.0](https://github.com/diverger/gh-obs-helper/compare/v1.1.9...v1.2.0)

RELEASE_NOTES_ARCHIVE.md

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

55
---
66

7+
## 🚀 GH OBS Helper Release v1.1.9
8+
9+
### 🎯 What's New
10+
- **Workflow Fixes**: Repaired corrupted GitHub workflow configuration
11+
- **Path Consistency**: Ensured all OBS paths use consistent repository folder structure
12+
- **CI/CD Stability**: Improved workflow reliability and maintainability
13+
14+
### 🔧 Changes
15+
- **Workflow Configuration**: Fixed corrupted `test-upload.yml` workflow inputs section
16+
- **OBS Path Standardization**: Confirmed all workflow files use "gh-obs-helper/" path prefix consistently
17+
18+
### 🐛 Bug Fixes
19+
- **Critical Fix**: Resolved corrupted YAML structure in `test-upload.yml` workflow file
20+
- **Input Validation**: Fixed malformed workflow inputs that were preventing proper execution
21+
- **Path Consistency**: Ensured single file upload test uses correct OBS path with repository prefix
22+
23+
### 📋 Known Issues
24+
- No known issues in this release
25+
- All workflows have been validated and are functioning correctly
26+
27+
### 🔗 Migration Guide
28+
- No breaking changes from v1.1.8
29+
- All existing workflows remain fully compatible
30+
- Workflow fixes are internal improvements that don't affect user-facing functionality
31+
32+
### 🛠️ Usage Example
33+
```yaml
34+
- name: Upload to OBS
35+
id: upload
36+
uses: diverger/[email protected]
37+
with:
38+
access_key: ${{ secrets.OBS_ACCESS_KEY }}
39+
secret_key: ${{ secrets.OBS_SECRET_KEY }}
40+
region: 'cn-north-4'
41+
bucket: 'my-bucket'
42+
operation: 'upload'
43+
local_path: 'dist/**/*'
44+
obs_path: 'gh-obs-helper/releases/v1.1.9/'
45+
public_read: true
46+
47+
- name: Use uploaded file URLs
48+
run: |
49+
echo "First file URL: ${{ steps.upload.outputs.first_upload_url }}"
50+
echo "All URLs: ${{ steps.upload.outputs.upload_urls }}"
51+
```
52+
53+
### 🙏 Contributors
54+
- Thank contributors
55+
- Mention community feedback
56+
57+
---
58+
**Full Changelog**: https://github.com/diverger/gh-obs-helper/compare/v1.1.8...v1.1.9
59+
60+
---
61+
762
## 🚀 GH OBS Helper Release v1.1.8
863
964
### 🎯 What's New

0 commit comments

Comments
 (0)