
* custom mirror which doesn't get rid of other branches Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add workflow for manual semi-release Signed-off-by: Jens Langhammer <jens@goauthentik.io> * make ci work on internal Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
30 lines
686 B
YAML
30 lines
686 B
YAML
---
|
|
name: authentik-ci-main-daily
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Every night at 3am
|
|
- cron: "0 3 * * *"
|
|
|
|
jobs:
|
|
test-container:
|
|
if: ${{ github.repository != 'goauthentik/authentik-internal' }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
version:
|
|
- docs
|
|
- version-2025-4
|
|
- version-2025-2
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: |
|
|
current="$(pwd)"
|
|
dir="/tmp/authentik/${{ matrix.version }}"
|
|
mkdir -p $dir
|
|
cd $dir
|
|
wget https://${{ matrix.version }}.goauthentik.io/docker-compose.yml
|
|
${current}/scripts/test_docker.sh
|