forked from Skynet/actions
doc: update documentation with the new action
This commit is contained in:
parent
5f39da9c7a
commit
54e2cf9e75
1 changed files with 25 additions and 0 deletions
25
README.md
25
README.md
|
@ -59,4 +59,29 @@ jobs:
|
||||||
ref_name: ${{ gitea.ref_name }}
|
ref_name: ${{ gitea.ref_name }}
|
||||||
- name: "Build it locally"
|
- name: "Build it locally"
|
||||||
run: nix build --verbose
|
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"
|
||||||
````
|
````
|
Loading…
Reference in a new issue