Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,23 @@
name: Publish a build

on:
workflow_dispatch:
release:
types:
- released
- prereleased

permissions:
contents: read
push:
branches:
- main
pull_request:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest-8-cores
runs-on: ubuntu-latest
name: Gradle Build and Publish to Container Registry
steps:
- uses: actions/checkout@v3

- name: Set execute permissions for gradlew
run: chmod +x ./gradlew

- name: Set up Zulu JDK 21
uses: actions/setup-java@v4
with:
Expand Down
Loading