diff options
| author | Paul-Christian Volkmer | 2023-08-10 20:17:10 +0200 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2023-08-10 20:29:43 +0200 |
| commit | 044d01534b1183449bfe7d2a783481b81feac455 (patch) | |
| tree | 8a2ccc9528ec1b10f4a10c7d318b99173436c32d | |
| parent | 4dde13e79a0d7d35648c498f7a98b62aea05b9ec (diff) | |
Build and deploy docker image on new releasev0.1.0
| -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 |
