File tree Expand file tree Collapse file tree 3 files changed +36
-1
lines changed
Expand file tree Collapse file tree 3 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1+ name : ExternalDns DnsMasq Provider
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches :
7+ - ' master'
8+
9+ jobs :
10+ build-n-push :
11+ runs-on : ubuntu-latest
12+ steps :
13+
14+ - name : Checkout
15+ uses : actions/checkout@v4
16+
17+ - name : Login
18+ uses : docker/login-action@v3
19+ with :
20+ registry : ghcr.io
21+ username : ${{ github.actor }}
22+ password : ${{ secrets.GITHUB_TOKEN }}
23+
24+ - name : Build and push
25+ uses : docker/build-push-action@v6
26+ with :
27+ context : " {{defaultContext}}"
28+ push : true
29+ tags : |
30+ ghcr.io/magicloud/e_d:${{ env.GITHUB_SHA }}
31+ ghcr.io/magicloud/e_d:latest
Original file line number Diff line number Diff line change 1+ {
2+ "git.enabled" : false
3+ }
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ sources:
1212 - service
1313 - ingress
1414 - crd
15+ - gateway-httproute
1516
1617provider :
1718 name : webhook
@@ -30,4 +31,4 @@ provider:
3031 value : debug
3132 extraVolumeMounts :
3233 - name : conf
33- mountPath : /etc/dnsmasq.d/
34+ mountPath : /etc/dnsmasq.d/
You can’t perform that action at this time.
0 commit comments