File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Docker Image CI
2+
3+ on :
4+ release :
5+ types :
6+ - created
7+
8+ jobs :
9+ build-release :
10+ if : " github.event.release.prerelease"
11+ runs-on : ubuntu-latest
12+
13+ steps :
14+ - uses : actions/checkout@v3
15+
16+ - name : ' Get Previous tag'
17+ id : previoustag
18+ uses : " WyriHaximus/github-action-get-previous-tag@v1"
19+ with :
20+ fallback : v0.1
21+
22+ - name : Login to Docker Hub
23+ uses : docker/login-action@v2
24+ with :
25+ registry : ghcr.io
26+ username : ${{ secrets.GHCR_LOGIN }}
27+ password : ${{ secrets.GHCR_PASSWORD }}
28+
29+ - name : Set up Docker Buildx
30+ id : buildx
31+ uses : docker/setup-buildx-action@v2
32+
33+ - name : Build and push
34+ id : docker_build
35+ uses : docker/build-push-action@v3
36+ with :
37+ context : ./
38+ file : ./.docker/Dockerfile
39+ push : true
40+ build-args :
41+ APP_VERSION=${{ steps.previoustag.outputs.tag }}
42+ tags :
43+ ghcr.io/${{ github.repository }}:dev, ghcr.io/${{ github.repository }}:${{ steps.previoustag.outputs.tag }}
You can’t perform that action at this time.
0 commit comments