2024-09-23 11:39:13 +00:00
|
|
|
name: On_Push
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
# paths:
|
|
|
|
# - src/**/*
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-09-28 13:23:52 +00:00
|
|
|
runs-on: docker
|
2024-09-23 11:39:13 +00:00
|
|
|
steps:
|
2024-09-28 13:50:11 +00:00
|
|
|
- run: |
|
|
|
|
apt update
|
|
|
|
apt upgrade
|
|
|
|
apt install sudo
|
2024-09-28 13:23:52 +00:00
|
|
|
- uses: https://github.com/cachix/install-nix-action@v29
|
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
- run: nix --version
|
2024-09-23 11:39:13 +00:00
|
|
|
# get the repo first
|
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
|
|
|
# Make sure all files are pulled down
|
2024-09-23 19:10:18 +00:00
|
|
|
- uses: https://forgejo.skynet.ie/Skynet/actions/get_lfs@v6
|
2024-09-23 11:39:13 +00:00
|
|
|
with:
|
|
|
|
repository: ${{ gitea.repository }}
|
|
|
|
ref_name: ${{ gitea.ref_name }}
|
|
|
|
# temp one just to get it "built"
|
2024-09-23 19:53:22 +00:00
|
|
|
- uses: https://forgejo.skynet.ie/Skynet/actions/deploy_user@v6
|
2024-09-23 11:39:13 +00:00
|
|
|
with:
|
|
|
|
ssh_key: ${{ secrets.SSH_KEY }}
|
2024-09-23 20:19:57 +00:00
|
|
|
username: ${{ env.GITHUB_REPOSITORY_OWNER }}
|
2024-09-23 11:39:13 +00:00
|
|
|
folder: "src"
|
|
|
|
#destination: "subfolder"
|