We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 104c316 commit ef97df2Copy full SHA for ef97df2
.github/workflows/build.yaml
@@ -0,0 +1,24 @@
1
+name: Test & Build
2
+
3
+on:
4
+ push:
5
+ branches: main
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: [self-hosted]
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Run tests
15
+ run: docker build --target test .
16
+ build:
17
+ needs: test
18
+ uses: secondlife/docker-build-workflow/.github/workflows/build.yml@signal/qemu
19
+ with:
20
+ image: platform/nginx-proxy
21
+ platforms: linux/amd64,linux/arm64
22
+ secrets:
23
+ github_pat: ${{ secrets.SHARED_GITHUB_TOKEN }}
24
+ jfrog_token: ${{ secrets.SHARED_JFROG_TOKEN }}
0 commit comments