File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Docker CI
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+
15+ - name : Set up Docker Buildx
16+ uses : docker/setup-buildx-action@v3
17+
18+ - name : Checkout code
19+ uses : actions/checkout@v2
20+
21+ - name : Login to Docker Hub
22+ uses : docker/login-action@v3
23+ with :
24+ username : ${{ secrets.DOCKERHUB_USERNAME }}
25+ password : ${{ secrets.DOCKERHUB_TOKEN }}
26+
27+ - name : Build and push
28+ uses : docker/build-push-action@v6
29+ with :
30+ push : true
31+ tags : |
32+ kweg/omnipoly:nightly
Original file line number Diff line number Diff line change 1+ ### Unreleased
2+
3+ - Added nightly builds on develop branch
4+
15### 0.10.4
26
37- fix: z-index
You can’t perform that action at this time.
0 commit comments