feat: migrate to Kotlin 2xx (#2) #2
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: Publish | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| GH_USERNAME: ${{ secrets.GH_USERNAME }} | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| GH_REPO_NAME: ${{ secrets.GH_REPO_NAME }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: gradle | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Publish Artifact Finance Networking | |
| run: ./gradlew :provider:finance:publishFinance-networkingPublicationToPackagesRepository | |
| continue-on-error: true | |
| - name: Sending report to Telegram | |
| uses: appleboy/telegram-action@master | |
| with: | |
| to: ${{ secrets.TELEGRAM_TO }} | |
| token: ${{ secrets.TELEGRAM_TOKEN }} | |
| message: 🚀 Group vn.finance.libs new release published on Github Packages! |