File tree Expand file tree Collapse file tree 1 file changed +54
-0
lines changed
Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Docker image
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v*'
7+
8+ env :
9+ REGISTRY : ghcr.io
10+ IMAGE_NAME : ${{ github.repository }}
11+
12+ jobs :
13+ push_back_to_registry :
14+ name : Push Docker image to Docker Hub
15+ runs-on : ubuntu-latest
16+ permissions :
17+ contents : read
18+ packages : write
19+ steps :
20+ - name : Check out the repo
21+ uses : actions/checkout@v3
22+ - name : Set up Docker Buildx
23+ uses : docker/setup-buildx-action@v2
24+ - name : Log in to the Container registry
25+ uses : docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
26+ with :
27+ registry : ${{ env.REGISTRY }}
28+ username : ${{ github.actor }}
29+ password : ${{ secrets.GITHUB_TOKEN }}
30+ - name : Extract metadata (tags, labels) for Docker
31+ id : meta
32+ uses : docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
33+ with :
34+ images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
35+ - name : Build and push Docker image
36+ uses : docker/build-push-action@v4
37+ with :
38+ context : ./
39+ file : ./Dockerfile
40+ platforms : linux/amd64
41+ push : true
42+ tags : ${{ steps.meta.outputs.tags }}
43+ labels : ${{ steps.meta.outputs.labels }}
44+
45+ deploy :
46+ needs : [push_back_to_registry]
47+ name : Deploy to production
48+ runs-on : ubuntu-latest
49+ permissions :
50+ contents : read
51+ packages : write
52+ steps :
53+ - name : Deploy to production
54+ run : curl -X GET ${{ secrets.CD_URL }}/${{ secrets.CD_TOKEN }}
You can’t perform that action at this time.
0 commit comments