File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build Seq-Forwarder
2+
3+ # This workflow uses actions that are not certified by GitHub.
4+ # They are provided by a third-party and are governed by
5+ # separate terms of service, privacy policy, and support
6+ # documentation.
7+
8+ on :
9+ push :
10+ branches : [ "dev" ]
11+ pull_request :
12+ branches : [ "dev" ]
13+
14+ jobs :
15+ build :
16+ name : ' Build and Push - Seq Forwarder'
17+ runs-on : ubuntu-latest
18+
19+ defaults :
20+ run :
21+ shell : bash
22+
23+ steps :
24+ - name : Checkout
25+ uses : actions/checkout@v4
26+
27+ - name : Docker Login
28+ uses : azure/docker-login@v1
29+ with :
30+ login-server : ${{ secrets.ACR_URL }}
31+ username : ${{ secrets.ACR_USERNAME }}
32+ password : ${{ secrets.ACR_PASSWORD }}
33+
34+ - name : Build and Push to ACR
35+ uses : docker/build-push-action@v2
36+ with :
37+ push : true
38+ tags : ${{ secrets.ACR_URL }}/seqfwd:latest
39+ file : ./dockerfile
You can’t perform that action at this time.
0 commit comments