Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tainnsre committed Nov 16, 2022
1 parent ce1df4d commit 566773d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/service-a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,10 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v') && ${{ env.DEPLOYMENTS == 'true' }}
run: echo "Master release ${{ github.event.release.name }}, ${{ github.head_ref }}"

- name: ingress to rke
if: ${{ (github.event.ref == 'refs/tags/v') && (env.DEPLOYMENTS == 'true') }}
run: echo "Master release ${{ github.event.release.name }}, ${{ github.head_ref }}"

- name: ingress to rke
if: ${{ (github.event.ref =~ 'refs/tags/v') && (env.DEPLOYMENTS == 'true') }}
if: ${{ (github.event.ref == 'refs/tags/v') && (env.DEPLOYMENTS == 'true') }}
run: echo "Master release ${{ github.event.release.name }}, ${{ github.head_ref }}"

0 comments on commit 566773d

Please sign in to comment.