Skip to content

1. update workflow yaml file. #2

1. update workflow yaml file.

1. update workflow yaml file. #2

Workflow file for this run

name: Publish package to GitHub Packages
on:
push:
branches:
- release-v1
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Publish package
run: mvn --batch-mode deploy -pl bifromq-integration-sdk
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}