-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cribbed from SeaGL/matrix-alias-proxy and modified from there.
- Loading branch information
0 parents
commit dc82b16
Showing
6 changed files
with
711 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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://[email protected]/authentik' | ||
branch: main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . |
Oops, something went wrong.