Fix deploy condition #4
|
@ -45,9 +45,8 @@ jobs:
|
||||||
jekyll build --verbose
|
jekyll build --verbose
|
||||||
- name: Prepare ssh key
|
- name: Prepare ssh key
|
||||||
id: prepare_ssh_key
|
id: prepare_ssh_key
|
||||||
#if: ${{ gitea.ref == 'main' }}
|
if: ${{ gitea.ref == 'main' }}
|
||||||
run: |
|
run: |
|
||||||
echo "Git refs = ${{ gitea.ref }} and ${{ github_ref }}"
|
|
||||||
echo "${{ secrets.WWW_DEPLOY_KEY }}" > ~/.ssh/id_ed25519
|
echo "${{ secrets.WWW_DEPLOY_KEY }}" > ~/.ssh/id_ed25519
|
||||||
chmod 600 ~/.ssh/id_ed25519
|
chmod 600 ~/.ssh/id_ed25519
|
||||||
- name: Publish Jekyll site
|
- name: Publish Jekyll site
|
||||||
|
@ -57,3 +56,7 @@ jobs:
|
||||||
rsync -halvi \
|
rsync -halvi \
|
||||||
-e "ssh -a -x -o StrictHostKeyChecking=no" \
|
-e "ssh -a -x -o StrictHostKeyChecking=no" \
|
||||||
./_site/ www@lafs.eval.latfa.net:/var/www/site/
|
./_site/ www@lafs.eval.latfa.net:/var/www/site/
|
||||||
|
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||||
|
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
||||||
|
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||||
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||||
|
|
Loading…
Reference in New Issue