This commit is contained in:
parent
b12087238b
commit
fb8f23b96b
4 changed files with 32 additions and 23 deletions
19
.forgejo/workflows/main.yml
Normal file
19
.forgejo/workflows/main.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
on:
|
||||
push:
|
||||
branches: ["main"]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: native
|
||||
env:
|
||||
PATH: /run/current-system/sw/bin:/usr/bin:/bin
|
||||
steps:
|
||||
- name: Checkout
|
||||
run: git clone --depth 1 ${{ github.server_url }}/${{ github.repository }} .
|
||||
- name: Check
|
||||
run: nix flake check
|
||||
- name: Build
|
||||
run: nix run .
|
||||
- name: Deploy
|
||||
run: cp -r public/. /var/www/jankremer.de/
|
||||
Loading…
Add table
Add a link
Reference in a new issue