Skip to content

chore: Bump version #15

chore: Bump version

chore: Bump version #15

Workflow file for this run

name: Publish app release
on:
push:
branches:
- master
- develop
paths-ignore:
- '**.md'
- 'app-common/**'
- 'app-android/**'
- 'app-desktop/**'
- 'app-web/**'
env:
REGISTRY: ghcr.io
jobs:
build-server:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Publish Docker image with jib
run: ./gradlew jib