Skip to content

Update dependency com.github.pengrad:java-telegram-bot-api to v7.9.0 #606

Update dependency com.github.pengrad:java-telegram-bot-api to v7.9.0

Update dependency com.github.pengrad:java-telegram-bot-api to v7.9.0 #606

Workflow file for this run

name: Docker Image CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
docker:
name: Build and upload Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout code changes
uses: actions/checkout@v4
- name: Prepare Docker
uses: docker/setup-buildx-action@v3
- name: Access Docker
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata
id: metadata
uses: docker/metadata-action@v5
with:
images: |
rob93c/stickerify
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch,enable=${{ github.ref != 'refs/heads/main' }}
type=ref,event=pr
- name: Upload Docker image
uses: docker/build-push-action@v6
with:
context: .
provenance: mode=max
sbom: true
push: true
tags: ${{ steps.metadata.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max