We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f4393 commit 4213f2dCopy full SHA for 4213f2d
2 files changed
.github/workflows/docker.yaml
@@ -0,0 +1,32 @@
1
+
2
+name: Docker
3
+on:
4
+ pull_request:
5
+ workflow_dispatch:
6
7
+jobs:
8
+ build:
9
+ name: Build
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Git clone the repository
13
+ uses: actions/checkout@v4
14
15
+ - name: Set up QEMU
16
+ uses: docker/setup-qemu-action@v3
17
18
+ - name: Set up Docker Buildx
19
+ uses: docker/setup-buildx-action@v3
20
21
+ - name: Create .env
22
+ run: |
23
+ touch .env
24
+ mkdir keys
25
+ touch keys/sp-cert.pem
26
+ touch keys/sp-key.pem
27
28
+ - name: Build image
29
30
+ docker buildx build \
31
+ --platform linux/amd64,linux/arm64 \
32
+ .
.github/workflows/publish.yaml
@@ -1,7 +1,10 @@
name: Publish
on:
- - push
- - workflow_dispatch
+ push:
+ branches:
+ - master
permissions:
id-token: write
contents: read
0 commit comments