Skip to content

✨ Allow selecting containers to update in discord bot (#4) #61

✨ Allow selecting containers to update in discord bot (#4)

✨ Allow selecting containers to update in discord bot (#4) #61

Workflow file for this run

name: Build Docker image
on:
push:
branches:
- master
jobs:
docker:
name: Push to GitHub Container Registry
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Set up JDK
uses: "actions/setup-java@v4"
with:
distribution: 'temurin'
java-version: 22
- name: Checkout
uses: "actions/checkout@v4"
- name: "Login to ghcr.io"
uses: "docker/#-action@v3"
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Publish Docker Image
run: mvn package jib:build