feat: move teh deploy action into a subfolder
This commit is contained in:
parent
6d39914fcb
commit
40a962200d
2 changed files with 33 additions and 0 deletions
33
README.md
33
README.md
|
@ -1,2 +1,35 @@
|
||||||
# actions-deploy-to-skynet
|
# actions-deploy-to-skynet
|
||||||
|
|
||||||
|
## v2
|
||||||
|
### deploy
|
||||||
|
```yaml
|
||||||
|
jobs:
|
||||||
|
# deploy it upstream
|
||||||
|
deploy:
|
||||||
|
# runs on teh default docker container
|
||||||
|
runs-on: docker
|
||||||
|
needs: [ build ]
|
||||||
|
steps:
|
||||||
|
- name: "Deploy to Skynet"
|
||||||
|
uses: https://forgejo.skynet.ie/Skynet/actions-deploy-to-skynet@v2
|
||||||
|
with:
|
||||||
|
input: 'compsoc_public'
|
||||||
|
token: ${{ secrets.API_TOKEN_FORGEJO }}
|
||||||
|
```
|
||||||
|
|
||||||
|
## v3
|
||||||
|
### deploy
|
||||||
|
```yaml
|
||||||
|
jobs:
|
||||||
|
# deploy it upstream
|
||||||
|
deploy:
|
||||||
|
# runs on teh default docker container
|
||||||
|
runs-on: docker
|
||||||
|
needs: [ build ]
|
||||||
|
steps:
|
||||||
|
- name: "Deploy to Skynet"
|
||||||
|
uses: https://forgejo.skynet.ie/Skynet/actions-deploy-to-skynet/deploy@v3
|
||||||
|
with:
|
||||||
|
input: 'compsoc_public'
|
||||||
|
token: ${{ secrets.API_TOKEN_FORGEJO }}
|
||||||
|
```
|
Reference in a new issue