We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
docker-nightly.yml
1 parent fe117ab commit 97de267Copy full SHA for 97de267
.github/workflows/docker-nightly.yml
@@ -0,0 +1,31 @@
1
+name: "docker: Build and push ghcr.io/zeuswpi/tap:nightly-[branch]"
2
+
3
+on:
4
+ push:
5
6
+concurrency:
7
+ group: docker-nightly-${{ github.ref_name }}
8
+ cancel-in-progress: true
9
10
+jobs:
11
+ docker:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v6
15
16
+ - uses: docker/setup-buildx-action@v3
17
18
+ - uses: docker/login-action@v3
19
+ with:
20
+ registry: ghcr.io
21
+ username: ${{ github.actor }}
22
+ password: ${{ github.token }}
23
24
+ - uses: docker/build-push-action@v6
25
26
+ context: .
27
+ file: Dockerfile.production
28
+ push: true
29
+ tags: |
30
+ ghcr.io/zeuswpi/tap:nightly-${{ github.ref_name }}
31
+ ghcr.io/zeuswpi/tap:nightly-${{ github.ref_name }}-${{ github.sha }}
0 commit comments