[maven-release-plugin] prepare release v0.5.0-RC4 #33
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: Tag Docker Build and Push | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
cache: maven | |
- name: Build SQRL | |
run: mvn -B -U -T 6 -e clean install -DskipTests=true | |
# Set up Docker | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Determine tag suffix | |
id: tag_suffix | |
run: | | |
if [[ "${{ github.ref_name }}" =~ -RC[0-9]+$ ]]; then | |
echo "TAG_SUFFIX=${{ github.ref_name }}" >> $GITHUB_ENV | |
else | |
echo "TAG_SUFFIX=latest" >> $GITHUB_ENV | |
fi | |
- name: Build and Push sqrl-cli Latest | |
uses: docker/build-push-action@v3 | |
with: | |
context: sqrl-tools/sqrl-cli | |
file: sqrl-tools/sqrl-cli/Dockerfile | |
push: true | |
tags: | | |
datasqrl/cmd:${{ github.ref_name }} | |
datasqrl/cmd:${{ env.TAG_SUFFIX }} | |
platforms: linux/amd64,linux/arm64 | |
- name: Build and Push sqrl-vertx Docker | |
uses: docker/build-push-action@v3 | |
with: | |
context: sqrl-server/sqrl-server-vertx | |
file: sqrl-server/sqrl-server-vertx/Dockerfile | |
push: true | |
tags: | | |
datasqrl/sqrl-server:${{ github.ref_name }} | |
datasqrl/sqrl-server:${{ env.TAG_SUFFIX }} | |
platforms: linux/amd64,linux/arm64 | |
- name: Build and Push sqrl-dependencies Docker | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: Dockerfile | |
push: true | |
tags: | | |
datasqrl/sqrl-dependencies:${{ github.ref_name }} | |
datasqrl/sqrl-dependencies:${{ env.TAG_SUFFIX }} | |
platforms: linux/amd64,linux/arm64 |