feat: move teh deploy action into a subfolder
This commit is contained in:
parent
6d39914fcb
commit
2ea394eea5
3 changed files with 59 additions and 0 deletions
33
README.md
33
README.md
|
@ -1,2 +1,35 @@
|
|||
# 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 }}
|
||||
```
|
26
get_lfs/action.yml
Normal file
26
get_lfs/action.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: 'Deploy to Skynet'
|
||||
description: 'Pull LFS objects, its borked otherwise on gitea/forgejo'
|
||||
inputs:
|
||||
repository:
|
||||
description: 'Pass in gitea.repository'
|
||||
required: true
|
||||
ref_name:
|
||||
description: 'Pass in gitea.ref_name'
|
||||
required: true
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: "Pull LFS objects"
|
||||
shell: bash
|
||||
run: |
|
||||
UrlBase=$GITHUB_SERVER_URL; \
|
||||
UrlLfsBase=$UrlBase/${{ inputs.repository }}.git/info/lfs/objects; \
|
||||
Auth=`git config --get --local http.$UrlBase/.extraheader`; \
|
||||
git config --local http.${UrlLfsBase}/batch.extraheader "$Auth"; \
|
||||
git config --local http.${UrlLfsBase}/.extraheader ''
|
||||
|
||||
git config --local lfs.transfer.maxretries 1
|
||||
|
||||
git lfs install
|
||||
git lfs fetch origin refs/remotes/origin/${{ inputs.ref_name }}
|
||||
git lfs checkout
|
Reference in a new issue