Skip to content

Commit

Permalink
feat: tsig dns support
Browse files Browse the repository at this point in the history
  • Loading branch information
wintbiit committed Dec 12, 2023
1 parent f863050 commit ec5c98a
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'push'
needs: [ backend, backend-windows ]
outputs:
new_version: ${{ steps.should_push.outputs.new_version }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -164,7 +166,7 @@ jobs:
docker:
runs-on: ubuntu-latest
needs: [ release ]
if: github.event_name == 'push'
if: github.event_name == 'push' && needs.release.outputs.new_version != ''
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down Expand Up @@ -202,7 +204,7 @@ jobs:

- name: Docker Push
uses: docker/build-push-action@v5
if: github.event_name == 'push'
if: github.event_name == 'push' && steps.should_push.outputs.push=='true'
with:
context: .
push: true
Expand All @@ -229,7 +231,7 @@ jobs:
docker-mini:
runs-on: ubuntu-latest
needs: [ release ]
if: github.event_name == 'push'
if: github.event_name == 'push' && needs.release.outputs.new_version != ''
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down Expand Up @@ -267,7 +269,7 @@ jobs:

- name: Docker Push Mini
uses: docker/build-push-action@v5
if: github.event_name == 'push'
if: github.event_name == 'push' && steps.should_push.outputs.push=='true'
with:
context: .
push: true
Expand All @@ -291,7 +293,7 @@ jobs:
docker-full:
runs-on: ubuntu-latest
needs: [ release ]
if: github.event_name == 'push'
if: github.event_name == 'push' && needs.release.outputs.new_version != ''
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down Expand Up @@ -329,7 +331,7 @@ jobs:

- name: Docker Push Full
uses: docker/build-push-action@v5
if: github.event_name == 'push'
if: github.event_name == 'push' && steps.should_push.outputs.push=='true'
with:
context: .
push: true
Expand Down

0 comments on commit ec5c98a

Please sign in to comment.