Avoid external actions for now
Jekyll / jekyll (pull_request) Failing after 25s
Details
Jekyll / jekyll (pull_request) Failing after 25s
Details
Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
This commit is contained in:
parent
eaa1f1fb85
commit
113b5fc6ad
|
@ -23,7 +23,7 @@ jobs:
|
||||||
id: install_docker
|
id: install_docker
|
||||||
run: |
|
run: |
|
||||||
apt-get -q update
|
apt-get -q update
|
||||||
apt-get -q install -y docker-compose uuid-runtime
|
apt-get -q install -y docker-compose
|
||||||
apt-get -q clean
|
apt-get -q clean
|
||||||
- name: Verify docker
|
- name: Verify docker
|
||||||
id: verify_docker
|
id: verify_docker
|
||||||
|
@ -46,11 +46,13 @@ jobs:
|
||||||
- name: Load ssh key
|
- name: Load ssh key
|
||||||
id: load_ssh_key
|
id: load_ssh_key
|
||||||
#if: ${{ github.ref == 'main' }}
|
#if: ${{ github.ref == 'main' }}
|
||||||
uses: LeastAuthority/ssh-agent-action@v1
|
run: |
|
||||||
with:
|
echo "${{ secrets.WWW_DEPLOY_KEY }}" > ~/.ssh/id_rsa
|
||||||
private_key: ${{ secrets.WWW_DEPLOY_KEY }}
|
chmod 600 ~/.ssh/id_rsa
|
||||||
|
ssh-add ~/.ssh/id_rsa
|
||||||
- name: Publish Jekyll site
|
- name: Publish Jekyll site
|
||||||
id: publish_site
|
id: publish_site
|
||||||
#if: ${{ github.ref == 'main' }}
|
#if: ${{ github.ref == 'main' }}
|
||||||
run: |
|
run: |
|
||||||
rsync -halvi -e "ssh -a -x -o StrictHostKeyChecking=no" ./_site/ www@lafs.eval.latfa.net:/var/www/site/
|
rsync -halvi -e "ssh -a -x -o StrictHostKeyChecking=no" \
|
||||||
|
./_site/ www@lafs.eval.latfa.net:/var/www/site/
|
||||||
|
|
Loading…
Reference in New Issue