File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Publish Develop Docker Image
2+
3+ on :
4+ push :
5+ branches :
6+ - develop
7+
8+ jobs :
9+ docker :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Set up QEMU
13+ uses : docker/setup-qemu-action@v3
14+ - name : Set up Docker Buildx
15+ uses : docker/setup-buildx-action@v3
16+ - name : Login to Docker Hub
17+ uses : docker/login-action@v3
18+ with :
19+ username : ${{ secrets.DOCKERHUB_USERNAME }}
20+ password : ${{ secrets.DOCKERHUB_TOKEN }}
21+ - name : Build and push
22+ uses : docker/build-push-action@v6
23+ with :
24+ push : true
25+ tags : Archmonger/Conreq:develop
Original file line number Diff line number Diff line change 1+ name : Publish Latest Docker Image
2+
3+ on :
4+ release :
5+ types : [published]
6+
7+ jobs :
8+ docker :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Set up QEMU
12+ uses : docker/setup-qemu-action@v3
13+ - name : Set up Docker Buildx
14+ uses : docker/setup-buildx-action@v3
15+ - name : Login to Docker Hub
16+ uses : docker/login-action@v3
17+ with :
18+ username : ${{ secrets.DOCKERHUB_USERNAME }}
19+ password : ${{ secrets.DOCKERHUB_TOKEN }}
20+ - name : Build and push
21+ uses : docker/build-push-action@v6
22+ with :
23+ push : true
24+ tags : Archmonger/Conreq:latest
You can’t perform that action at this time.
0 commit comments