2020-12-05 21:08:42 +00:00
|
|
|
name: authentik-on-release
|
2020-09-10 11:25:08 +00:00
|
|
|
|
2020-01-02 09:22:03 +00:00
|
|
|
on:
|
2020-09-10 11:25:08 +00:00
|
|
|
release:
|
2020-09-10 12:35:13 +00:00
|
|
|
types: [published, created]
|
2020-01-02 09:22:03 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-server:
|
2020-01-02 12:49:24 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-01-02 09:22:03 +00:00
|
|
|
steps:
|
2023-09-05 04:42:41 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-04-28 19:03:13 +00:00
|
|
|
- name: Set up QEMU
|
2023-09-13 10:10:39 +00:00
|
|
|
uses: docker/setup-qemu-action@v3.0.0
|
2021-04-28 19:03:13 +00:00
|
|
|
- name: Set up Docker Buildx
|
2022-05-06 07:53:40 +00:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2022-06-21 21:31:27 +00:00
|
|
|
- name: prepare variables
|
|
|
|
uses: ./.github/actions/docker-push-variables
|
|
|
|
id: ev
|
2020-01-02 09:22:03 +00:00
|
|
|
- name: Docker Login Registry
|
2022-05-06 07:53:49 +00:00
|
|
|
uses: docker/login-action@v2
|
2021-04-28 18:58:11 +00:00
|
|
|
with:
|
2021-05-09 14:37:03 +00:00
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2021-05-10 10:13:03 +00:00
|
|
|
- name: Login to GitHub Container Registry
|
2022-05-06 07:53:49 +00:00
|
|
|
uses: docker/login-action@v2
|
2021-05-10 10:13:03 +00:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2023-01-11 16:15:19 +00:00
|
|
|
- name: Build Docker Image
|
2023-09-13 10:16:12 +00:00
|
|
|
uses: docker/build-push-action@v5
|
2021-04-28 19:03:13 +00:00
|
|
|
with:
|
2021-05-09 21:09:48 +00:00
|
|
|
push: ${{ github.event_name == 'release' }}
|
2023-01-22 18:19:41 +00:00
|
|
|
secrets: |
|
2022-12-20 21:09:30 +00:00
|
|
|
GEOIPUPDATE_ACCOUNT_ID=${{ secrets.GEOIPUPDATE_ACCOUNT_ID }}
|
|
|
|
GEOIPUPDATE_LICENSE_KEY=${{ secrets.GEOIPUPDATE_LICENSE_KEY }}
|
2021-04-28 19:03:13 +00:00
|
|
|
tags: |
|
2022-06-21 21:31:27 +00:00
|
|
|
beryju/authentik:${{ steps.ev.outputs.version }},
|
|
|
|
beryju/authentik:${{ steps.ev.outputs.versionFamily }},
|
2021-05-05 19:11:18 +00:00
|
|
|
beryju/authentik:latest,
|
2022-06-21 21:31:27 +00:00
|
|
|
ghcr.io/goauthentik/server:${{ steps.ev.outputs.version }},
|
|
|
|
ghcr.io/goauthentik/server:${{ steps.ev.outputs.versionFamily }},
|
2021-05-05 19:11:18 +00:00
|
|
|
ghcr.io/goauthentik/server:latest
|
2021-12-01 14:27:37 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2022-12-20 21:09:30 +00:00
|
|
|
build-args: |
|
2023-06-23 22:10:27 +00:00
|
|
|
VERSION=${{ steps.ev.outputs.version }}
|
2022-12-20 21:09:30 +00:00
|
|
|
VERSION_FAMILY=${{ steps.ev.outputs.versionFamily }}
|
2021-11-21 22:08:55 +00:00
|
|
|
build-outpost:
|
2020-01-02 14:55:39 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-11-21 22:08:55 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
type:
|
|
|
|
- proxy
|
|
|
|
- ldap
|
2023-03-20 15:54:35 +00:00
|
|
|
- radius
|
2020-01-02 14:55:39 +00:00
|
|
|
steps:
|
2023-09-05 04:42:41 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-03-16 09:44:18 +00:00
|
|
|
- uses: actions/setup-go@v4
|
2020-09-10 12:35:13 +00:00
|
|
|
with:
|
2023-04-21 10:54:23 +00:00
|
|
|
go-version-file: "go.mod"
|
2021-04-28 19:03:13 +00:00
|
|
|
- name: Set up QEMU
|
2023-09-13 10:10:39 +00:00
|
|
|
uses: docker/setup-qemu-action@v3.0.0
|
2021-04-28 19:03:13 +00:00
|
|
|
- name: Set up Docker Buildx
|
2022-05-06 07:53:40 +00:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2022-06-21 21:31:27 +00:00
|
|
|
- name: prepare variables
|
|
|
|
uses: ./.github/actions/docker-push-variables
|
|
|
|
id: ev
|
2020-01-02 14:55:39 +00:00
|
|
|
- name: Docker Login Registry
|
2022-05-06 07:53:49 +00:00
|
|
|
uses: docker/login-action@v2
|
2021-04-28 18:58:11 +00:00
|
|
|
with:
|
2021-05-09 14:37:03 +00:00
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2021-05-10 10:13:03 +00:00
|
|
|
- name: Login to GitHub Container Registry
|
2022-05-06 07:53:49 +00:00
|
|
|
uses: docker/login-action@v2
|
2021-05-10 10:13:03 +00:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2023-01-11 16:15:19 +00:00
|
|
|
- name: Build Docker Image
|
2023-09-13 10:16:12 +00:00
|
|
|
uses: docker/build-push-action@v5
|
2021-04-28 19:03:13 +00:00
|
|
|
with:
|
2021-05-09 21:09:48 +00:00
|
|
|
push: ${{ github.event_name == 'release' }}
|
2021-04-28 19:03:13 +00:00
|
|
|
tags: |
|
2022-06-21 21:31:27 +00:00
|
|
|
beryju/authentik-${{ matrix.type }}:${{ steps.ev.outputs.version }},
|
|
|
|
beryju/authentik-${{ matrix.type }}:${{ steps.ev.outputs.versionFamily }},
|
2021-11-21 22:08:55 +00:00
|
|
|
beryju/authentik-${{ matrix.type }}:latest,
|
2022-06-21 21:31:27 +00:00
|
|
|
ghcr.io/goauthentik/${{ matrix.type }}:${{ steps.ev.outputs.version }},
|
|
|
|
ghcr.io/goauthentik/${{ matrix.type }}:${{ steps.ev.outputs.versionFamily }},
|
2021-11-21 22:08:55 +00:00
|
|
|
ghcr.io/goauthentik/${{ matrix.type }}:latest
|
|
|
|
file: ${{ matrix.type }}.Dockerfile
|
2021-12-01 14:27:37 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2022-12-20 21:09:30 +00:00
|
|
|
build-args: |
|
2023-06-23 22:10:27 +00:00
|
|
|
VERSION=${{ steps.ev.outputs.version }}
|
2022-12-20 21:09:30 +00:00
|
|
|
VERSION_FAMILY=${{ steps.ev.outputs.versionFamily }}
|
2021-12-17 19:49:32 +00:00
|
|
|
build-outpost-binary:
|
|
|
|
timeout-minutes: 120
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
type:
|
|
|
|
- proxy
|
|
|
|
- ldap
|
2023-03-20 15:54:35 +00:00
|
|
|
- radius
|
2021-12-18 20:02:20 +00:00
|
|
|
goos: [linux, darwin]
|
|
|
|
goarch: [amd64, arm64]
|
2021-12-17 19:49:32 +00:00
|
|
|
steps:
|
2023-09-05 04:42:41 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-03-16 09:44:18 +00:00
|
|
|
- uses: actions/setup-go@v4
|
2021-12-17 19:49:32 +00:00
|
|
|
with:
|
2023-04-21 10:54:23 +00:00
|
|
|
go-version-file: "go.mod"
|
2023-09-06 10:22:25 +00:00
|
|
|
- uses: actions/setup-node@v3
|
2021-12-17 19:49:32 +00:00
|
|
|
with:
|
2023-09-06 10:22:25 +00:00
|
|
|
node-version: "20.5"
|
2023-04-21 10:54:23 +00:00
|
|
|
cache: "npm"
|
2021-12-17 19:49:32 +00:00
|
|
|
cache-dependency-path: web/package-lock.json
|
|
|
|
- name: Build web
|
2022-05-09 19:22:41 +00:00
|
|
|
working-directory: web/
|
2021-12-17 19:49:32 +00:00
|
|
|
run: |
|
2022-04-14 20:30:44 +00:00
|
|
|
npm ci
|
2021-12-17 19:49:32 +00:00
|
|
|
npm run build-proxy
|
|
|
|
- name: Build outpost
|
|
|
|
run: |
|
|
|
|
set -x
|
|
|
|
export GOOS=${{ matrix.goos }}
|
|
|
|
export GOARCH=${{ matrix.goarch }}
|
2023-05-31 14:48:14 +00:00
|
|
|
export CGO_ENABLED=0
|
2021-12-17 19:49:32 +00:00
|
|
|
go build -tags=outpost_static_embed -v -o ./authentik-outpost-${{ matrix.type }}_${{ matrix.goos }}_${{ matrix.goarch }} ./cmd/${{ matrix.type }}
|
|
|
|
- name: Upload binaries to release
|
|
|
|
uses: svenstaro/upload-release-action@v2
|
|
|
|
with:
|
|
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
file: ./authentik-outpost-${{ matrix.type }}_${{ matrix.goos }}_${{ matrix.goarch }}
|
2021-12-18 20:03:47 +00:00
|
|
|
asset_name: authentik-outpost-${{ matrix.type }}_${{ matrix.goos }}_${{ matrix.goarch }}
|
2021-12-17 19:49:32 +00:00
|
|
|
tag: ${{ github.ref }}
|
2020-01-02 10:20:32 +00:00
|
|
|
test-release:
|
2020-01-02 09:22:03 +00:00
|
|
|
needs:
|
|
|
|
- build-server
|
2021-11-21 22:08:55 +00:00
|
|
|
- build-outpost
|
2021-12-17 19:49:32 +00:00
|
|
|
- build-outpost-binary
|
2020-01-02 12:49:24 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-01-02 10:20:32 +00:00
|
|
|
steps:
|
2023-09-05 04:42:41 +00:00
|
|
|
- uses: actions/checkout@v4
|
2020-01-02 10:20:32 +00:00
|
|
|
- name: Run test suite in final docker images
|
|
|
|
run: |
|
2021-10-19 13:34:54 +00:00
|
|
|
echo "PG_PASS=$(openssl rand -base64 32)" >> .env
|
|
|
|
echo "AUTHENTIK_SECRET_KEY=$(openssl rand -base64 32)" >> .env
|
2020-06-08 08:58:44 +00:00
|
|
|
docker-compose pull -q
|
2020-01-02 10:20:32 +00:00
|
|
|
docker-compose up --no-start
|
|
|
|
docker-compose start postgresql redis
|
2022-08-16 14:59:17 +00:00
|
|
|
docker-compose run -u root server test-all
|
2020-07-07 12:09:28 +00:00
|
|
|
sentry-release:
|
|
|
|
needs:
|
2021-12-21 19:52:03 +00:00
|
|
|
- build-server
|
|
|
|
- build-outpost
|
|
|
|
- build-outpost-binary
|
2020-07-07 12:09:28 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-05 04:42:41 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-06-21 21:31:27 +00:00
|
|
|
- name: prepare variables
|
|
|
|
uses: ./.github/actions/docker-push-variables
|
|
|
|
id: ev
|
2021-12-09 13:10:09 +00:00
|
|
|
- name: Get static files from docker image
|
2021-06-21 14:12:14 +00:00
|
|
|
run: |
|
2021-12-09 13:10:09 +00:00
|
|
|
docker pull ghcr.io/goauthentik/server:latest
|
|
|
|
container=$(docker container create ghcr.io/goauthentik/server:latest)
|
|
|
|
docker cp ${container}:web/ .
|
2020-07-07 12:09:28 +00:00
|
|
|
- name: Create a Sentry.io release
|
2021-04-29 14:14:03 +00:00
|
|
|
uses: getsentry/action-release@v1
|
2022-08-16 14:40:10 +00:00
|
|
|
continue-on-error: true
|
2021-06-21 14:12:14 +00:00
|
|
|
if: ${{ github.event_name == 'release' }}
|
2020-07-07 12:09:28 +00:00
|
|
|
env:
|
|
|
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
2022-12-23 10:18:26 +00:00
|
|
|
SENTRY_ORG: authentik-security-inc
|
2020-12-05 21:08:42 +00:00
|
|
|
SENTRY_PROJECT: authentik
|
2020-07-07 12:09:28 +00:00
|
|
|
with:
|
2022-06-21 21:31:27 +00:00
|
|
|
version: authentik@${{ steps.ev.outputs.version }}
|
2023-04-21 10:54:23 +00:00
|
|
|
sourcemaps: "./web/dist"
|
|
|
|
url_prefix: "~/static/dist"
|