From 54e2cf9e75594d5078585891d103a1e57e426402 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sun, 22 Sep 2024 22:50:14 +0100 Subject: [PATCH] doc: update documentation with the new action --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index 3da2141..d31b80f 100644 --- a/README.md +++ b/README.md @@ -59,4 +59,29 @@ jobs: ref_name: ${{ gitea.ref_name }} - 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" ```` \ No newline at end of file