File tree Expand file tree Collapse file tree 1 file changed +20
-9
lines changed Expand file tree Collapse file tree 1 file changed +20
-9
lines changed Original file line number Diff line number Diff line change 1414 - debug
1515
1616jobs :
17-
18- build :
19-
17+ docker :
2018 runs-on : ubuntu-latest
21-
2219 steps :
23- - uses : actions/checkout@v3
24- - name : Set Global Variables
25- run : echo "version=1.2.1-slim" >> $GITHUB_ENV
26- - name : Build the Docker image
27- run : docker build . --file Dockerfile --tag sucwangsr/janus-webrtc-gateway-docker:$version
20+ -
21+ name : Checkout
22+ uses : actions/checkout@v4.2.2
23+ -
24+ name : Set up QEMU
25+ uses : docker/setup-qemu-action@v3.6.0
26+ -
27+ name : Set up Docker Buildx
28+ uses : docker/setup-buildx-action@v3.11.1
29+ -
30+ name : Login to DockerHub
31+ uses : docker/login-action@v1
32+ with :
33+ username : ${{ secrets.HUB_USER }}
34+ password : ${{ secrets.HUB_PWD }}
35+ -
36+ name : Generate App Version
37+ run : echo APP_VERSION=`git describe --tags --abbrev=0`-muti >> $GITHUB_ENV
38+
You can’t perform that action at this time.
0 commit comments