Fix deploy condition #4
|
@ -12,13 +12,6 @@ jobs:
|
||||||
jekyll:
|
jekyll:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: Check environment
|
|
||||||
id: check_environment
|
|
||||||
run: |
|
|
||||||
echo "The job was automatically triggered by a ${{ gitea.event_name }} event."
|
|
||||||
echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
|
||||||
echo "The name of your branch is ${{ github.ref }} and your repository is ${{ gitea.repository }}."
|
|
||||||
echo "This job's status is ${{ job.status }}."
|
|
||||||
- name: Check out repository
|
- name: Check out repository
|
||||||
id: checkout
|
id: checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -52,13 +45,13 @@ 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 == 'refs/heads/main' }}
|
||||||
run: |
|
run: |
|
||||||
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
|
||||||
id: publish_site
|
id: publish_site
|
||||||
if: ${{ gitea.ref == 'main' }}
|
if: ${{ gitea.ref == 'refs/heads/main' }}
|
||||||
run: |
|
run: |
|
||||||
rsync -halvi \
|
rsync -halvi \
|
||||||
-e "ssh -a -x -o StrictHostKeyChecking=no" \
|
-e "ssh -a -x -o StrictHostKeyChecking=no" \
|
||||||
|
|
Loading…
Reference in New Issue