Skip to content

Commit ef97df2

Browse files
author
Bennett Goble
committed
chore: add build workflow
1 parent 104c316 commit ef97df2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/build.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Test & Build
2+
3+
on:
4+
push:
5+
branches: main
6+
pull_request:
7+
branches: main
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

Comments
 (0)