- List new features
- Describe improvements
- Mention bug fixes
- Breaking changes (if any)
- API modifications
- Parameter updates
- Fixed issue descriptions
- Performance improvements
- Any known limitations
- Workarounds if available
- Steps to upgrade from previous version
- Code changes required (if any)
- name: Upload to OBS
id: upload
uses: diverger/gh-obs-helper@[VERSION]
with:
access_key: ${{ secrets.OBS_ACCESS_KEY }}
secret_key: ${{ secrets.OBS_SECRET_KEY }}
region: 'cn-north-4'
bucket: 'my-bucket'
operation: 'upload'
local_path: 'dist/**/*'
obs_path: 'gh-obs-helper/releases/[VERSION]/'
public_read: true
- name: Use uploaded file URLs
run: |
echo "First file URL: ${{ steps.upload.outputs.first_upload_url }}"
echo "All URLs: ${{ steps.upload.outputs.upload_urls }}"- Thank contributors
- Mention community feedback
Full Changelog: https://github.com/diverger/gh-obs-helper/compare/[PREVIOUS]...[VERSION]