Update PR-Demo-Comment.yml #31
This file contains hidden or 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: Push Docker Image with VersionNumber | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: "17" | |
| distribution: "temurin" | |
| - uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| gradle-version: 8.7 | |
| - name: Run Gradle Command | |
| run: ./gradlew clean build | |
| env: | |
| DOCKER_ENABLE_SECURITY: false | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Get version number | |
| id: versionNumber | |
| run: echo "versionNumber=$(./gradlew printVersion --quiet | tail -1)" >> $GITHUB_OUTPUT | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
| password: ${{ secrets.DOCKER_HUB_API }} | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ github.token }} | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Convert repository owner to lowercase | |
| id: repoowner | |
| run: echo "lowercase=$(echo ${{ github.repository_owner }} | awk '{print tolower($0)}')" >> $GITHUB_OUTPUT | |
| - name: Generate tags | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: | | |
| ${{ secrets.DOCKER_HUB_USERNAME }}/s-pdf | |
| ghcr.io/${{ steps.repoowner.outputs.lowercase }}/s-pdf | |
| ghcr.io/${{ steps.repoowner.outputs.lowercase }}/stirling-pdf | |
| ${{ secrets.DOCKER_HUB_ORG_USERNAME }}/stirling-pdf | |
| tags: | | |
| type=raw,value=${{ steps.versionNumber.outputs.versionNumber }},enable=${{ github.ref == 'refs/heads/master' }} | |
| type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }} | |
| type=raw,value=alpha,enable=${{ github.ref == 'refs/heads/main' }} | |
| - name: Build and push main Dockerfile | |
| uses: docker/build-push-action@v6 | |
| with: | |
| builder: ${{ steps.buildx.outputs.name }} | |
| context: . | |
| file: ./Dockerfile | |
| push: true | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| build-args: VERSION_TAG=${{ steps.versionNumber.outputs.versionNumber }} | |
| platforms: linux/amd64,linux/arm64/v8 | |
| - name: Generate tags ultra-lite | |
| id: meta2 | |
| uses: docker/metadata-action@v5 | |
| if: github.ref != 'refs/heads/main' | |
| with: | |
| images: | | |
| ${{ secrets.DOCKER_HUB_USERNAME }}/s-pdf | |
| ghcr.io/${{ steps.repoowner.outputs.lowercase }}/s-pdf | |
| ghcr.io/${{ steps.repoowner.outputs.lowercase }}/stirling-pdf | |
| ${{ secrets.DOCKER_HUB_ORG_USERNAME }}/stirling-pdf | |
| tags: | | |
| type=raw,value=${{ steps.versionNumber.outputs.versionNumber }}-ultra-lite,enable=${{ github.ref == 'refs/heads/master' }} | |
| type=raw,value=latest-ultra-lite,enable=${{ github.ref == 'refs/heads/master' }} | |
| - name: Build and push Dockerfile-ultra-lite | |
| uses: docker/build-push-action@v6 | |
| if: github.ref != 'refs/heads/main' | |
| with: | |
| context: . | |
| file: ./Dockerfile-ultra-lite | |
| push: true | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| tags: ${{ steps.meta2.outputs.tags }} | |
| labels: ${{ steps.meta2.outputs.labels }} | |
| build-args: VERSION_TAG=${{ steps.versionNumber.outputs.versionNumber }} | |
| platforms: linux/amd64,linux/arm64/v8 | |
| - name: Generate tags fat | |
| id: meta3 | |
| uses: docker/metadata-action@v5 | |
| if: github.ref != 'refs/heads/main' | |
| with: | |
| images: | | |
| ${{ secrets.DOCKER_HUB_USERNAME }}/s-pdf | |
| ghcr.io/${{ steps.repoowner.outputs.lowercase }}/s-pdf | |
| ghcr.io/${{ steps.repoowner.outputs.lowercase }}/stirling-pdf | |
| ${{ secrets.DOCKER_HUB_ORG_USERNAME }}/stirling-pdf | |
| tags: | | |
| type=raw,value=${{ steps.versionNumber.outputs.versionNumber }}-fat,enable=${{ github.ref == 'refs/heads/master' }} | |
| type=raw,value=latest-fat,enable=${{ github.ref == 'refs/heads/master' }} | |
| - name: Build and push main Dockerfile fat | |
| uses: docker/build-push-action@v6 | |
| if: github.ref != 'refs/heads/main' | |
| with: | |
| builder: ${{ steps.buildx.outputs.name }} | |
| context: . | |
| file: ./Dockerfile-fat | |
| push: true | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| tags: ${{ steps.meta3.outputs.tags }} | |
| labels: ${{ steps.meta3.outputs.labels }} | |
| build-args: VERSION_TAG=${{ steps.versionNumber.outputs.versionNumber }} | |
| platforms: linux/amd64,linux/arm64/v8 |