summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-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