Highly-opinionated (ex-bullshit-free) MTPROTO proxy for Telegram. If you use v1.0 or upgrade broke you proxy, please read the chapter Version 2
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

release.yml 471B

12345678910111213141516171819202122232425262728
  1. name: Release
  2. on:
  3. push:
  4. tags:
  5. - v*
  6. permissions:
  7. contents: write
  8. jobs:
  9. release:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v4
  13. with:
  14. fetch-depth: 0
  15. - uses: actions/setup-go@v5
  16. with:
  17. go-version: "1.26"
  18. - uses: goreleaser/goreleaser-action@v6
  19. with:
  20. version: latest
  21. args: release --clean
  22. env:
  23. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}