release.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. name: release
  2. on:
  3. push:
  4. tags:
  5. - '*'
  6. jobs:
  7. build:
  8. permissions: write-all
  9. name: Create Release
  10. runs-on: ubuntu-latest
  11. steps:
  12. - name: Checkout code
  13. uses: actions/checkout@v2
  14. - name: Create Release
  15. id: create_release
  16. uses: actions/create-release@v1
  17. env:
  18. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  19. with:
  20. tag_name: ${{ github.ref }}
  21. release_name: Real-ESRGAN ${{ github.ref }} Release Note
  22. body: |
  23. 🚀 See you again 😸
  24. 🚀Have a nice day 😸 and happy everyday 😃
  25. 🚀 Long time no see ☄️
  26. ✨ **Highlights**
  27. ✅ [Features] Support ...
  28. 🐛 **Bug Fixes**
  29. 🌴 **Improvements**
  30. 📢📢📢
  31. <p align="center">
  32. <img src="https://raw.githubusercontent.com/xinntao/Real-ESRGAN/master/assets/realesrgan_logo.png" height=150>
  33. </p>
  34. draft: true
  35. prerelease: false