doc: update documentation with the new action

This commit is contained in:
silver 2024-09-22 22:50:14 +01:00
parent 5f39da9c7a
commit 54e2cf9e75
Signed by untrusted user: silver
GPG key ID: 36F93D61BAD3FD7D

View file

@ -60,3 +60,28 @@ jobs:
- name: "Build it locally"
run: nix build --verbose
````
## v5
````yaml
jobs:
build:
# build it using teh base nixos system, helps with caching
runs-on: nix
steps:
# get the repo first
- uses: https://code.forgejo.org/actions/checkout@v4
- name: "Get LFS objects"
uses: https://forgejo.skynet.ie/Skynet/actions/get_lfs@v3
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
# temp one just to get it "built"
- name: "Deploy"
uses: https://forgejo.skynet.ie/Skynet/actions/deploy_user@v5
with:
ssh_key: ${{ secrets.KEY }}
username: ${{ secrets.USERNAME }}
folder: "build"
destination: "subfolder"
````