Bump the all group with 8 updates #579
Workflow file for this run
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: "Build Kotbot Docker" | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| name: "Build Application" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: "25" | |
| distribution: "liberica" | |
| - uses: gradle/actions/setup-gradle@v6 | |
| - run: ./gradlew distTar | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: "Kotlin Application" | |
| path: "tgkotbot/build/distributions/kotbot.tar" | |
| retention-days: 1 | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: "TGPT Application" | |
| path: "tgpt/build/distributions/tgpt.tar" | |
| retention-days: 1 | |
| build-and-push-image: | |
| name: "Build Docker Image" | |
| if: ${{ github.ref == 'refs/heads/main' }} | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/download-artifact@v8 | |
| with: | |
| name: "Kotlin Application" | |
| path: "tgkotbot/build/distributions/" | |
| - name: "Untar files" | |
| run: mkdir -p tgkotbot/build/install && tar -xvf tgkotbot/build/distributions/kotbot.tar -C $_ | |
| - name: "Set up Docker Buildx" | |
| uses: docker/setup-buildx-action@v4 | |
| - name: "Login to GHCR" | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: "Build and push" | |
| uses: docker/build-push-action@v7 | |
| with: | |
| platforms: linux/amd64,linux/arm64 | |
| context: tgkotbot | |
| push: true | |
| tags: ghcr.io/heapy/kotbot:main | |
| build-and-push-tgpt-image: | |
| name: "Build TGPT Docker Image" | |
| if: ${{ github.ref == 'refs/heads/main' }} | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/download-artifact@v8 | |
| with: | |
| name: "TGPT Application" | |
| path: "tgpt/build/distributions/" | |
| - name: "Untar files" | |
| run: mkdir -p tgpt/build/install && tar -xvf tgpt/build/distributions/tgpt.tar -C $_ | |
| - name: "Set up Docker Buildx" | |
| uses: docker/setup-buildx-action@v4 | |
| - name: "Login to GHCR" | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: "Build and push" | |
| uses: docker/build-push-action@v7 | |
| with: | |
| platforms: linux/amd64,linux/arm64 | |
| context: tgpt | |
| push: true | |
| tags: ghcr.io/heapy/tgpt:main |