We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c0fcd commit 2b3d6feCopy full SHA for 2b3d6fe
.github/workflows/publish.yml
@@ -9,8 +9,18 @@ jobs:
9
environment: mavenCentralPublish
10
runs-on: ubuntu-latest
11
steps:
12
+ - name: Configure git
13
+ env:
14
+ TOKEN: ${{ secrets.ACCESS_TOKEN }}
15
+ run: git config --global url."https://${TOKEN}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
16
- name: Checkout
17
uses: actions/checkout@v2
18
+ - name: Checkout hivemq-platform
19
+ run: |
20
+ git clone https://github.com/hivemq/hivemq-platform.git ../hivemq-platform
21
+ cd ../hivemq-platform
22
+ git checkout "${GITHUB_REF##*/}" || true
23
+ cd ../hivemq-kafka-extension-customization-sdk
24
- name: Setup Java
25
uses: actions/setup-java@v2
26
with:
0 commit comments