fix(client): set delay to 5ms if packet is null in audio source job #104
This file contains 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: | |
- v2.1.x | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: | | |
8 | |
16 | |
17 | |
21 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: false | |
- name: Build with Gradle | |
run: ./gradlew build --stacktrace -Psnapshot=true | |
- name: Publish to snapshots maven repository | |
env: | |
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
run: ./gradlew publish --stacktrace -Psnapshot=true | |
- name: Publish to GitHub | |
uses: Apehum/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
github-generate-changelog: false | |
github-prerelease: true | |
- name: Build dokka | |
run: ./gradlew dokkaHtmlCollector | |
- name: Upload dokka artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./build/dokka/htmlCollector | |
deploy-dokka: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |