doc: added v6 documentation
This commit is contained in:
parent
fa5e0d7dda
commit
90efe0241c
1 changed files with 29 additions and 9 deletions
38
README.md
38
README.md
|
@ -62,25 +62,45 @@ jobs:
|
||||||
````
|
````
|
||||||
|
|
||||||
|
|
||||||
## v5
|
### v6
|
||||||
````yaml
|
````yaml
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
# build it using teh base nixos system, helps with caching
|
# build it using teh base nixos system, helps with caching
|
||||||
runs-on: nix
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
# get the repo first
|
# get the repo first
|
||||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
- name: "Get LFS objects"
|
# Make sure all files are pulled down
|
||||||
uses: https://forgejo.skynet.ie/Skynet/actions/get_lfs@v3
|
- uses: https://forgejo.skynet.ie/Skynet/actions/get_lfs@v6
|
||||||
|
with:
|
||||||
|
repository: ${{ gitea.repository }}
|
||||||
|
ref_name: ${{ gitea.ref_name }}
|
||||||
|
````
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Deploy User
|
||||||
|
### v6
|
||||||
|
```yaml
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
# build it using teh base nixos system, helps with caching
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
# get the repo first
|
||||||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
# Make sure all files are pulled down
|
||||||
|
- uses: https://forgejo.skynet.ie/Skynet/actions/get_lfs@v6
|
||||||
with:
|
with:
|
||||||
repository: ${{ gitea.repository }}
|
repository: ${{ gitea.repository }}
|
||||||
ref_name: ${{ gitea.ref_name }}
|
ref_name: ${{ gitea.ref_name }}
|
||||||
# temp one just to get it "built"
|
# temp one just to get it "built"
|
||||||
- name: "Deploy"
|
- uses: https://forgejo.skynet.ie/Skynet/actions/deploy_user@v6
|
||||||
uses: https://forgejo.skynet.ie/Skynet/actions/deploy_user@v5
|
|
||||||
with:
|
with:
|
||||||
ssh_key: ${{ secrets.SSH_KEY }}
|
ssh_key: ${{ secrets.SSH_KEY }}
|
||||||
folder: "build"
|
username: ${{ env.GITHUB_REPOSITORY_OWNER }}
|
||||||
destination: "subfolder"
|
folder: "src"
|
||||||
````
|
#destination: "subfolder"
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue