feat: add channel.reward.redemption.updated and kicks.gifted webhook … #19
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 to repository | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build | |
| run: ./gradlew clean build | |
| - name: Publish to Maven repository | |
| env: | |
| REPOSILITE_USER: ${{ secrets.REPOSILITE_USER }} | |
| REPOSILITE_TOKEN: ${{ secrets.REPOSILITE_TOKEN }} | |
| run: ./gradlew publish |