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
|
|
|
|
build-server:
|
2020-01-02 12:49:24 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-01-02 09:22:03 +00:00
|
|
|
steps:
|
2021-05-09 15:51:56 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-04-28 19:03:13 +00:00
|
|
|
- name: Set up QEMU
|
2021-05-27 07:25:50 +00:00
|
|
|
uses: docker/setup-qemu-action@v1.2.0
|
2021-04-28 19:03:13 +00:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
2020-01-02 09:22:03 +00:00
|
|
|
- name: Docker Login Registry
|
2021-04-28 18:58:11 +00:00
|
|
|
uses: docker/login-action@v1
|
|
|
|
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
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2020-01-02 09:22:03 +00:00
|
|
|
- name: Building Docker Image
|
2021-04-28 19:03:13 +00:00
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
2021-05-09 21:09:48 +00:00
|
|
|
push: ${{ github.event_name == 'release' }}
|
2021-04-28 19:03:13 +00:00
|
|
|
tags: |
|
2021-10-31 09:56:21 +00:00
|
|
|
beryju/authentik:2021.10.1,
|
2021-05-05 19:11:18 +00:00
|
|
|
beryju/authentik:latest,
|
2021-10-31 09:56:21 +00:00
|
|
|
ghcr.io/goauthentik/server:2021.10.1,
|
2021-05-05 19:11:18 +00:00
|
|
|
ghcr.io/goauthentik/server:latest
|
2021-05-10 09:33:21 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-05-09 19:42:22 +00:00
|
|
|
context: .
|
2021-06-15 15:34:23 +00:00
|
|
|
- name: Building Docker Image (stable)
|
2021-10-31 09:56:21 +00:00
|
|
|
if: ${{ github.event_name == 'release' && !contains('2021.10.1', 'rc') }}
|
2021-06-22 21:33:36 +00:00
|
|
|
run: |
|
2021-06-21 14:11:30 +00:00
|
|
|
docker pull beryju/authentik:latest
|
|
|
|
docker tag beryju/authentik:latest beryju/authentik:stable
|
|
|
|
docker push beryju/authentik:stable
|
|
|
|
docker pull ghcr.io/goauthentik/server:latest
|
|
|
|
docker tag ghcr.io/goauthentik/server:latest ghcr.io/goauthentik/server:stable
|
|
|
|
docker push ghcr.io/goauthentik/server:stable
|
2020-09-02 22:04:12 +00:00
|
|
|
build-proxy:
|
2020-01-02 14:55:39 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-05-09 15:51:56 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-09-10 12:24:02 +00:00
|
|
|
- uses: actions/setup-go@v2
|
2020-09-10 12:35:13 +00:00
|
|
|
with:
|
|
|
|
go-version: "^1.15"
|
2021-04-28 19:03:13 +00:00
|
|
|
- name: Set up QEMU
|
2021-05-27 07:25:50 +00:00
|
|
|
uses: docker/setup-qemu-action@v1.2.0
|
2021-04-28 19:03:13 +00:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
2020-01-02 14:55:39 +00:00
|
|
|
- name: Docker Login Registry
|
2021-04-28 18:58:11 +00:00
|
|
|
uses: docker/login-action@v1
|
|
|
|
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
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2020-01-02 14:55:39 +00:00
|
|
|
- name: Building Docker Image
|
2021-04-28 19:03:13 +00:00
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
2021-05-09 21:09:48 +00:00
|
|
|
push: ${{ github.event_name == 'release' }}
|
2021-04-28 19:03:13 +00:00
|
|
|
tags: |
|
2021-10-31 09:56:21 +00:00
|
|
|
beryju/authentik-proxy:2021.10.1,
|
2021-04-28 19:03:13 +00:00
|
|
|
beryju/authentik-proxy:latest,
|
2021-10-31 09:56:21 +00:00
|
|
|
ghcr.io/goauthentik/proxy:2021.10.1,
|
2021-04-28 19:03:13 +00:00
|
|
|
ghcr.io/goauthentik/proxy:latest
|
2021-06-16 10:02:02 +00:00
|
|
|
file: proxy.Dockerfile
|
2021-05-10 09:33:21 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-06-15 15:34:23 +00:00
|
|
|
- name: Building Docker Image (stable)
|
2021-10-31 09:56:21 +00:00
|
|
|
if: ${{ github.event_name == 'release' && !contains('2021.10.1', 'rc') }}
|
2021-06-22 21:33:36 +00:00
|
|
|
run: |
|
2021-06-21 14:11:30 +00:00
|
|
|
docker pull beryju/authentik-proxy:latest
|
|
|
|
docker tag beryju/authentik-proxy:latest beryju/authentik-proxy:stable
|
|
|
|
docker push beryju/authentik-proxy:stable
|
|
|
|
docker pull ghcr.io/goauthentik/proxy:latest
|
|
|
|
docker tag ghcr.io/goauthentik/proxy:latest ghcr.io/goauthentik/proxy:stable
|
|
|
|
docker push ghcr.io/goauthentik/proxy:stable
|
2021-05-05 19:11:18 +00:00
|
|
|
build-ldap:
|
2020-01-02 12:49:24 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-01-02 09:22:03 +00:00
|
|
|
steps:
|
2021-05-09 15:51:56 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-05-05 19:11:18 +00:00
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: "^1.15"
|
2021-04-28 19:03:13 +00:00
|
|
|
- name: Set up QEMU
|
2021-05-27 07:25:50 +00:00
|
|
|
uses: docker/setup-qemu-action@v1.2.0
|
2021-04-28 19:03:13 +00:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
2020-01-02 09:22:03 +00:00
|
|
|
- name: Docker Login Registry
|
2021-04-28 18:58:11 +00:00
|
|
|
uses: docker/login-action@v1
|
|
|
|
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
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2020-01-02 09:22:03 +00:00
|
|
|
- name: Building Docker Image
|
2021-04-28 19:03:13 +00:00
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
2021-05-09 21:09:48 +00:00
|
|
|
push: ${{ github.event_name == 'release' }}
|
2021-04-28 19:03:13 +00:00
|
|
|
tags: |
|
2021-10-31 09:56:21 +00:00
|
|
|
beryju/authentik-ldap:2021.10.1,
|
2021-05-05 19:11:18 +00:00
|
|
|
beryju/authentik-ldap:latest,
|
2021-10-31 09:56:21 +00:00
|
|
|
ghcr.io/goauthentik/ldap:2021.10.1,
|
2021-05-05 19:11:18 +00:00
|
|
|
ghcr.io/goauthentik/ldap:latest
|
2021-06-16 10:02:02 +00:00
|
|
|
file: ldap.Dockerfile
|
2021-05-10 09:33:21 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-06-15 15:34:23 +00:00
|
|
|
- name: Building Docker Image (stable)
|
2021-10-31 09:56:21 +00:00
|
|
|
if: ${{ github.event_name == 'release' && !contains('2021.10.1', 'rc') }}
|
2021-06-22 21:33:36 +00:00
|
|
|
run: |
|
2021-06-21 14:11:30 +00:00
|
|
|
docker pull beryju/authentik-ldap:latest
|
|
|
|
docker tag beryju/authentik-ldap:latest beryju/authentik-ldap:stable
|
|
|
|
docker push beryju/authentik-ldap:stable
|
|
|
|
docker pull ghcr.io/goauthentik/ldap:latest
|
|
|
|
docker tag ghcr.io/goauthentik/ldap:latest ghcr.io/goauthentik/ldap:stable
|
|
|
|
docker push ghcr.io/goauthentik/ldap:stable
|
2020-01-02 10:20:32 +00:00
|
|
|
test-release:
|
2020-01-02 09:22:03 +00:00
|
|
|
needs:
|
|
|
|
- build-server
|
2020-12-12 20:10:13 +00:00
|
|
|
- build-proxy
|
2021-05-05 19:11:18 +00:00
|
|
|
- build-ldap
|
2020-01-02 12:49:24 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-01-02 10:20:32 +00:00
|
|
|
steps:
|
2021-05-09 15:51:56 +00:00
|
|
|
- uses: actions/checkout@v2
|
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
|
2021-06-09 13:50:32 +00:00
|
|
|
docker-compose run -u root server test
|
2020-07-07 12:09:28 +00:00
|
|
|
sentry-release:
|
|
|
|
needs:
|
|
|
|
- test-release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-05-09 15:51:56 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-06-21 14:12:14 +00:00
|
|
|
- name: Setup Node.js environment
|
2021-09-07 08:06:30 +00:00
|
|
|
uses: actions/setup-node@v2
|
2021-06-21 14:12:14 +00:00
|
|
|
with:
|
2021-09-07 08:06:30 +00:00
|
|
|
node-version: '16'
|
2021-06-21 14:12:14 +00:00
|
|
|
- name: Build web api client and web ui
|
|
|
|
run: |
|
|
|
|
export NODE_ENV=production
|
|
|
|
cd web
|
|
|
|
npm i
|
|
|
|
npm run build
|
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
|
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 }}
|
|
|
|
SENTRY_ORG: beryjuorg
|
2020-12-05 21:08:42 +00:00
|
|
|
SENTRY_PROJECT: authentik
|
2020-07-07 12:09:28 +00:00
|
|
|
SENTRY_URL: https://sentry.beryju.org
|
|
|
|
with:
|
2021-10-31 09:56:21 +00:00
|
|
|
version: authentik@2021.10.1
|
2020-08-20 21:12:54 +00:00
|
|
|
environment: beryjuorg-prod
|
2021-06-21 14:12:14 +00:00
|
|
|
sourcemaps: './web/dist'
|
2021-07-29 19:06:40 +00:00
|
|
|
url_prefix: '~/static/dist'
|