File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ name : docker
2+
3+ on :
4+ push :
5+ schedule :
6+ - cron : " 32 1 * * 6"
7+
8+ jobs :
9+ docker-ci :
10+ runs-on : ubuntu-latest
11+ name : ${{ matrix.tag }}
12+
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ tag : [ci, ci-dev, ci-4.0]
17+
18+ steps :
19+ - name : Checkout
20+ uses : actions/checkout@v2
21+
22+ - name : Set up Docker Buildx
23+ uses : docker/setup-buildx-action@v1
24+
25+ - name : Login to DockerHub
26+ uses : docker/login-action@v1
27+ with :
28+ username : ${{ secrets.DOCKER_USERNAME }}
29+ password : ${{ secrets.DOCKER_PASSWORD }}
30+
31+ - name : Build and push
32+ uses : docker/build-push-action@v2
33+ with :
34+ push : true
35+ context : docker/${{ matrix.tag }}
36+ tags : rcpp/${{ matrix.tag }}
Original file line number Diff line number Diff line change 1+ 2021-10-02 Dirk Eddelbuettel <edd@debian.org>
2+
3+ * .github/workflows/docker.yaml (jobs): Add basic container builder
4+
152021-10-01 Dirk Eddelbuettel <edd@debian.org>
26
37 * DESCRIPTION (Version, Date): Roll minor version
You can’t perform that action at this time.
0 commit comments