Update netty non-major dependencies to v4.1.106.Final #123
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 Snapshot to Docker Hub | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
snapshot: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Checkout Extension SDK | |
run: | | |
git clone https://github.com/hivemq/hivemq-extension-sdk.git ../hivemq-extension-sdk | |
cd ../hivemq-extension-sdk | |
git checkout ${GITHUB_REF##*/} || true | |
cd ../hivemq-community-edition | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- name: Login to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Push Snapshot To Docker Hub | |
run: PUSH_IMAGE=true docker/build.sh |