Skip to content

Latest commit

Β 

History

History
53 lines (43 loc) Β· 1.18 KB

File metadata and controls

53 lines (43 loc) Β· 1.18 KB

Release Notes

πŸš€ GH OBS Helper Release [VERSION]

🎯 What's New

  • List new features
  • Describe improvements
  • Mention bug fixes

πŸ”§ Changes

  • Breaking changes (if any)
  • API modifications
  • Parameter updates

πŸ› Bug Fixes

  • Fixed issue descriptions
  • Performance improvements

πŸ“‹ Known Issues

  • Any known limitations
  • Workarounds if available

πŸ”— Migration Guide

  • Steps to upgrade from previous version
  • Code changes required (if any)

πŸ› οΈ Usage Example

- 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 }}"

πŸ™ Contributors

  • Thank contributors
  • Mention community feedback

Full Changelog: https://github.com/diverger/gh-obs-helper/compare/[PREVIOUS]...[VERSION]