1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-04-19 17:26:51 +00:00

Change condition when to run docker job

This commit is contained in:
Paul-Christian Volkmer 2023-08-10 18:44:33 +02:00
parent 2264d85bd1
commit 25ec557c25

View File

@ -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