Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Cribbed from SeaGL/matrix-alias-proxy and modified from there.
  • Loading branch information
strugee committed Apr 18, 2024
0 parents commit dc82b16
Show file tree
Hide file tree
Showing 6 changed files with 711 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deployment

on:
push: { branches: main }
workflow_dispatch:

jobs:
deploy:
concurrency: { group: production, cancel-in-progress: true }
environment: production
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v2
with:
fetch-depth: 0 # Complete

- name: Push to Dokku
uses: dokku/github-action@master
with:
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
git_remote_url: 'ssh://dokku@dokku.seagl.org/authentik'
branch: main
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM ghcr.io/goauthentik/server:2024.2.2

# TODO Procfile apparently doesn't need to be copied. Does app.json?
COPY app.json .
Loading

0 comments on commit dc82b16

Please sign in to comment.