Bump the all group with 8 updates #411
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@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| java-version: "21" | |
| distribution: "liberica" | |
| - uses: gradle/actions/setup-gradle@v4 | |
| - run: ./gradlew distTar | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: "Kotlin Application" | |
| path: "tgkotbot/build/distributions/kotbot.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@v4 | |
| - uses: actions/download-artifact@v4 | |
| 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@v3 | |
| - name: "Login to GHCR" | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: "Build and push" | |
| uses: docker/build-push-action@v6 | |
| with: | |
| platforms: linux/amd64,linux/arm64 | |
| context: tgkotbot | |
| push: true | |
| tags: ghcr.io/heapy/kotbot:main |