diff options
| -rw-r--r-- | .github/workflows/deploy.yml (renamed from .github/workflows/docker.yml) | 8 | ||||
| -rw-r--r-- | build.gradle.kts | 2 |
2 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/deploy.yml index d6f3e3e..6d15376 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/deploy.yml @@ -1,13 +1,11 @@ -name: "Run docker build and deploy" +name: "Run build and deploy" on: - workflow_run: - workflows: [ 'Run Tests' ] - types: [ 'completed' ] + release: + types: [ 'published' ] jobs: docker: - if: ${{ github.event.workflow_run.conclusion == 'success' && github.ref_type == 'tag' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/build.gradle.kts b/build.gradle.kts index 7650575..ed8056d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "de.ukw.ccc" -version = "0.1.0-SNAPSHOT" +version = "0.1.0" java { sourceCompatibility = JavaVersion.VERSION_17 |
