-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (47 loc) · 1.3 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: CI
on:
pull_request:
push:
branches:
- master
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
- run: test -z $(go fmt)
- run: go build
- run: go vet
- uses: dominikh/[email protected]
with:
install-go: false
- run: go test
docker:
name: Docker
runs-on: ubuntu-latest
steps:
- uses: docker/setup-buildx-action@v1
- uses: docker/login-action@v1
if: github.event_name == 'push'
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/login-action@v1
if: github.event_name == 'push'
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- uses: docker/build-push-action@v2
with:
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name == 'push' }}
tags: |
pkoenig10/oidc-rp:latest
pkoenig10/oidc-rp:${{ github.sha }}
ghcr.io/pkoenig10/oidc-rp:latest
ghcr.io/pkoenig10/oidc-rp:${{ github.sha }}