diff options
| author | Paul-Christian Volkmer | 2023-08-10 18:44:33 +0200 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2023-08-10 18:44:33 +0200 |
| commit | 25ec557c25378774194627775b460af290bfccee (patch) | |
| tree | 421cd28f8f98fc30b75d3263c035f5fb671a7b80 /.github/workflows/docker.yml | |
| parent | 2264d85bd10cf18c8a6e7e0c7fb8f79bf7c24b87 (diff) | |
Change condition when to run docker job
Diffstat (limited to '.github/workflows/docker.yml')
| -rw-r--r-- | .github/workflows/docker.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index bf4f6a0..d6f3e3e 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -7,7 +7,7 @@ on: jobs: docker: - if: ${{ github.event.workflow_run.conclusion == 'success' && contains(github.event.ref, '/tags/') }} + if: ${{ github.event.workflow_run.conclusion == 'success' && github.ref_type == 'tag' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 |
