Compare commits
1 Commits
Author | SHA1 | Date |
---|---|---|
Marc Riera | eac9dbb27d |
|
@ -0,0 +1,36 @@
|
||||||
|
name: publish
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
SSH_PRIVATE_KEY: ${{ secrets.PUBLISHER_PRIVATE_KEY }}
|
||||||
|
SSH_HOST: ${{ secrets.PUBLISHER_HOST }}
|
||||||
|
SSH_PORT: ${{ secrets.PUBLISHER_PORT }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
fetch-depth: 0 # all history for all branches and tags\
|
||||||
|
|
||||||
|
- name: Install Hugo
|
||||||
|
run: |
|
||||||
|
apt update && apt install -y hugo
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
hugo --minify
|
||||||
|
|
||||||
|
- name: Deploy
|
||||||
|
run: |
|
||||||
|
eval $(ssh-agent -s)
|
||||||
|
echo "$SSH_PRIVATE_KEY" | ssh-add -
|
||||||
|
apt update && apt install -y rsync
|
||||||
|
mkdir ~/.ssh
|
||||||
|
ssh-keyscan -p $SSH_PORT $SSH_HOST > ~/.ssh/known_hosts
|
||||||
|
rsync -atv --progress --delete -e "ssh -p $SSH_PORT" ./public/ publisher@$SSH_HOST:/usr/share/nginx/html/
|
|
@ -1,25 +0,0 @@
|
||||||
image: monachus/hugo
|
|
||||||
|
|
||||||
variables:
|
|
||||||
GIT_SUBMODULE_STRATEGY: recursive
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- apt-get update
|
|
||||||
- apt-get --yes install rsync
|
|
||||||
|
|
||||||
build:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- hugo
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- public
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
|
|
||||||
deploy:
|
|
||||||
stage: deploy
|
|
||||||
script:
|
|
||||||
- rsync -hrv --delete public/ /var/opt/gitlab-runner/builds/$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME/
|
|
||||||
only:
|
|
||||||
- master
|
|
|
@ -1,3 +1,3 @@
|
||||||
[submodule "themes/kozmo-dark"]
|
[submodule "themes/kozmo-dark"]
|
||||||
path = themes/kozmo-dark
|
path = themes/kozmo-dark
|
||||||
url = https://gitlab.com/MarcRiera/kozmo-dark.git
|
url = https://git.marcriera.cat/marc/kozmo-dark.git
|
||||||
|
|
Loading…
Reference in New Issue