2023-01-29 15:10:12 +01:00
|
|
|
name: Push Docker Image with VersionNumber
|
|
|
|
|
|
|
|
on:
|
2023-04-22 01:46:27 +02:00
|
|
|
workflow_dispatch:
|
2023-01-29 15:10:12 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- main
|
|
|
|
jobs:
|
2023-01-29 19:41:33 +01:00
|
|
|
push:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-01-30 21:56:22 +01:00
|
|
|
|
2023-04-22 01:45:11 +02:00
|
|
|
- uses: actions/checkout@v3.5.2
|
2023-01-29 15:10:12 +01:00
|
|
|
|
|
|
|
- name: Set up JDK 17
|
2023-04-22 01:45:11 +02:00
|
|
|
uses: actions/setup-java@v3.11.0
|
2023-01-29 15:10:12 +01:00
|
|
|
with:
|
|
|
|
java-version: '17'
|
|
|
|
distribution: 'temurin'
|
|
|
|
|
|
|
|
|
2023-04-22 01:45:11 +02:00
|
|
|
- uses: gradle/gradle-build-action@v2.4.2
|
2023-01-29 15:10:12 +01:00
|
|
|
with:
|
|
|
|
gradle-version: 7.6
|
|
|
|
arguments: clean build
|
|
|
|
|
|
|
|
- name: Make Gradle wrapper executable
|
|
|
|
run: chmod +x gradlew
|
|
|
|
|
|
|
|
- name: Get version number
|
|
|
|
id: versionNumber
|
|
|
|
run: echo "::set-output name=versionNumber::$(./gradlew printVersion --quiet | tail -1)"
|
|
|
|
|
|
|
|
- name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v2.1.0
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
2023-04-22 01:41:33 +02:00
|
|
|
password: ${{ secrets.DOCKER_HUB_API }}
|
2023-01-31 20:50:24 +01:00
|
|
|
|
2023-04-22 01:41:33 +02:00
|
|
|
- name: Login to GitHub Container Registry
|
2023-04-22 01:45:11 +02:00
|
|
|
uses: docker/login-action@v2.1.0
|
2023-04-22 01:41:33 +02:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ github.token }}
|
2023-01-29 15:10:12 +01:00
|
|
|
|
2023-04-22 01:41:33 +02:00
|
|
|
- name: Generate tags
|
|
|
|
id: meta
|
2023-04-22 01:45:11 +02:00
|
|
|
uses: docker/metadata-action@v4.4.0
|
2023-04-22 01:41:33 +02:00
|
|
|
with:
|
|
|
|
images: |
|
2023-04-22 02:12:14 +02:00
|
|
|
${{ secrets.DOCKER_HUB_USERNAME }}/s-pdf
|
2023-04-22 01:41:33 +02:00
|
|
|
ghcr.io/${{ github.repository_owner }}/s-pdf
|
|
|
|
tags: |
|
|
|
|
${{ steps.versionNumber.outputs.versionNumber }}${{ github.ref == 'refs/heads/main' && '-alpha' || '' }}
|
2023-05-13 11:44:22 +02:00
|
|
|
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }}
|
|
|
|
|
2023-04-22 01:41:33 +02:00
|
|
|
- name: Set up QEMU
|
2023-04-22 01:45:11 +02:00
|
|
|
uses: docker/setup-qemu-action@v2.1.0
|
2023-04-22 01:41:33 +02:00
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2023-04-22 01:45:11 +02:00
|
|
|
uses: docker/setup-buildx-action@v2.5.0
|
2023-01-31 20:50:24 +01:00
|
|
|
|
2023-04-22 01:41:33 +02:00
|
|
|
- name: Build and push
|
2023-04-22 01:45:11 +02:00
|
|
|
uses: docker/build-push-action@v4.0.0
|
2023-04-22 01:41:33 +02:00
|
|
|
with:
|
2023-04-22 02:10:02 +02:00
|
|
|
context: .
|
2023-04-22 01:41:33 +02:00
|
|
|
push: true
|
2023-04-22 01:50:15 +02:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
2023-04-22 01:41:33 +02:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
|
platforms: linux/amd64,linux/arm64/v8
|