summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2023-08-10 20:17:10 +0200
committerPaul-Christian Volkmer2023-08-10 20:29:43 +0200
commit044d01534b1183449bfe7d2a783481b81feac455 (patch)
tree8a2ccc9528ec1b10f4a10c7d318b99173436c32d /.github/workflows
parent4dde13e79a0d7d35648c498f7a98b62aea05b9ec (diff)
Build and deploy docker image on new releasev0.1.0
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/deploy.yml (renamed from .github/workflows/docker.yml)8
1 files changed, 3 insertions, 5 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