name: authentik-on-release on: release: types: [published, created] push: branches: - version-* jobs: # Build build-server: 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: Docker Login Registry uses: docker/login-action@v1 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry uses: docker/login-action@v1 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Building Docker Image uses: docker/build-push-action@v2 with: push: ${{ github.event_name == 'release' }} tags: | beryju/authentik:2021.6.1-rc6, beryju/authentik:latest, ghcr.io/goauthentik/server:2021.6.1-rc6, ghcr.io/goauthentik/server:latest platforms: linux/amd64,linux/arm64 context: . - name: Building Docker Image (stable) uses: docker/build-push-action@v2 if: ${{ github.event_name == 'release' && !contains('2021.6.1-rc6', 'rc') }} with: push: true tags: | beryju/authentik:stable, ghcr.io/goauthentik/server:stable platforms: linux/amd64,linux/arm64 context: . build-proxy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: go-version: "^1.15" - name: Set up QEMU uses: docker/setup-qemu-action@v1.2.0 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - name: Docker Login Registry uses: docker/login-action@v1 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry uses: docker/login-action@v1 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Building Docker Image uses: docker/build-push-action@v2 with: push: ${{ github.event_name == 'release' }} tags: | beryju/authentik-proxy:2021.6.1-rc6, beryju/authentik-proxy:latest, ghcr.io/goauthentik/proxy:2021.6.1-rc6, ghcr.io/goauthentik/proxy:latest file: outpost/proxy.Dockerfile platforms: linux/amd64,linux/arm64 - name: Building Docker Image (stable) uses: docker/build-push-action@v2 if: ${{ github.event_name == 'release' && !contains('2021.6.1-rc6', 'rc') }} with: push: true tags: | beryju/authentik-proxy:stable, ghcr.io/goauthentik/proxy:stable platforms: linux/amd64,linux/arm64 context: . build-ldap: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: go-version: "^1.15" - name: Set up QEMU uses: docker/setup-qemu-action@v1.2.0 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - name: Docker Login Registry uses: docker/login-action@v1 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry uses: docker/login-action@v1 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Building Docker Image uses: docker/build-push-action@v2 with: push: ${{ github.event_name == 'release' }} tags: | beryju/authentik-ldap:2021.6.1-rc6, beryju/authentik-ldap:latest, ghcr.io/goauthentik/ldap:2021.6.1-rc6, ghcr.io/goauthentik/ldap:latest file: outpost/ldap.Dockerfile platforms: linux/amd64,linux/arm64 - name: Building Docker Image (stable) uses: docker/build-push-action@v2 if: ${{ github.event_name == 'release' && !contains('2021.6.1-rc6', 'rc') }} with: push: true tags: | beryju/authentik-ldap:stable, ghcr.io/goauthentik/ldap:stable platforms: linux/amd64,linux/arm64 context: . test-release: if: ${{ github.event_name == 'release' }} needs: - build-server - build-proxy - build-ldap runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run test suite in final docker images run: | sudo apt-get install -y pwgen echo "PG_PASS=$(pwgen 40 1)" >> .env echo "AUTHENTIK_SECRET_KEY=$(pwgen 50 1)" >> .env docker-compose pull -q docker-compose up --no-start docker-compose start postgresql redis docker-compose run -u root server test sentry-release: if: ${{ github.event_name == 'release' }} needs: - test-release runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Create a Sentry.io release uses: getsentry/action-release@v1 env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: beryjuorg SENTRY_PROJECT: authentik SENTRY_URL: https://sentry.beryju.org with: version: authentik@2021.6.1-rc6 environment: beryjuorg-prod