17 lines
408 B
YAML
17 lines
408 B
YAML
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: Build
|
|
run: nix run .
|
|
- name: Deploy
|
|
run: cp -rf --no-preserve=all public/. /var/www/jankremer.de/
|