65 lines
1.9 KiB
YAML
65 lines
1.9 KiB
YAML
|
name: authentik-ci-outpost
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
|
||
|
jobs:
|
||
|
lint-golint:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-go@v2
|
||
|
with:
|
||
|
go-version: '^1.16.3'
|
||
|
- name: Generate API
|
||
|
run: |
|
||
|
make gen-outpost
|
||
|
- name: Run linter
|
||
|
run: |
|
||
|
# Create folder structure for go embeds
|
||
|
mkdir -p web/dist
|
||
|
mkdir -p website/help
|
||
|
touch web/dist/test website/help/test
|
||
|
docker run \
|
||
|
--rm \
|
||
|
-v $(pwd):/app \
|
||
|
-w /app \
|
||
|
golangci/golangci-lint:v1.39.0 \
|
||
|
golangci-lint run -v --timeout 200s
|
||
|
build:
|
||
|
needs:
|
||
|
- lint-golint
|
||
|
strategy:
|
||
|
matrix:
|
||
|
type:
|
||
|
- proxy
|
||
|
- ldap
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Set up QEMU
|
||
|
uses: docker/setup-qemu-action@v1.2.0
|
||
|
- name: Set up Docker Buildx
|
||
|
uses: docker/setup-buildx-action@v1
|
||
|
- name: prepare variables
|
||
|
id: ev
|
||
|
run: |
|
||
|
python ./scripts/gh_do_set_branch.py
|
||
|
- name: Login to GitHub Container Registry
|
||
|
uses: docker/login-action@v1
|
||
|
with:
|
||
|
registry: beryju.org
|
||
|
username: ${{ secrets.HARBOR_USERNAME }}
|
||
|
password: ${{ secrets.HARBOR_PASSWORD }}
|
||
|
- name: Building Docker Image
|
||
|
uses: docker/build-push-action@v2
|
||
|
with:
|
||
|
tags: |
|
||
|
beryju.org/authentik/outpost-${{ matrix.type }}:gh-${{ steps.ev.outputs.branchName }},
|
||
|
beryju.org/authentik/outpost-${{ matrix.type }}:gh-${{ steps.ev.outputs.branchName }}-${{ steps.ev.outputs.timestamp }},
|
||
|
beryju.org/authentik/outpost-${{ matrix.type }}:gh-${{ env.GITHUB_SHA }}
|
||
|
file: ${{ matrix.type }}.Dockerfile
|
||
|
platforms: linux/amd64,linux/arm64
|
||
|
build-args: |
|
||
|
GIT_BUILD_HASH=${{ env.GITHUB_SHA }}
|