fix: change default SkipStrategy to NeverSkip (#95) #7
Workflow file for this run
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 standalone image with tag | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: "11" | |
distribution: "adopt" | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: publish local java-toolkit | |
working-directory: ./java-toolkit | |
run: ./gradlew publishToMavenLocal -PdisableSigning --info --refresh-dependencies | |
- name: build images | |
working-directory: ./sink-elasticsearch | |
run: | | |
export CONNECTOR_IMAGE_VERSION=standalone_${GITHUB_REF#refs/*/} | |
./gradlew buildImages | |
- name: Login to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Push images to dockerhub | |
run: docker push hstreamdb/sink-elasticsearch:standalone_${GITHUB_REF#refs/*/} |