File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -177,6 +177,30 @@ jobs:
177177 push : true
178178 platforms : linux/amd64
179179
180+ build-pancpdo :
181+ runs-on : ubuntu-latest
182+ steps :
183+ - name : Checkout
184+ uses : actions/checkout@v3
185+ - name : Set up QEMU
186+ uses : docker/setup-qemu-action@v3
187+ - name : Set up Docker Buildx
188+ uses : docker/setup-buildx-action@v3
189+ - name : Login to DockerHub
190+ uses : docker/login-action@v3
191+ with :
192+ username : ${{ secrets.DOCKERHUB_USERNAME }}
193+ password : ${{ secrets.DOCKERHUB_PASSWORD }}
194+ - name : Build and push pancpdo
195+ uses : docker/build-push-action@v3
196+ with :
197+ file : ./build/docker/Dockerfile.pancpdo
198+ tags : |
199+ sgosline/pancpdo:latest
200+ sgosline/pancpdo:${{ github.ref_name }}
201+ push : true
202+ platforms : linux/amd64
203+
180204 build-upload :
181205 runs-on : ubuntu-latest
182206 steps :
You can’t perform that action at this time.
0 commit comments