website/.github/workflows/deploy.yml

48 lines
1.3 KiB
YAML
Raw Normal View History

2024-02-22 12:06:47 +00:00
name: build and deploy site
2021-10-16 08:31:21 +00:00
2024-02-22 12:06:47 +00:00
# The trigger for the action
on:
push:
branches:
- master
2024-02-16 21:48:55 +00:00
2024-02-22 12:06:47 +00:00
# Jobs are contains steps
jobs:
build_deploy:
name: build and deploy
# This job runs on linux
runs-on: ubuntu-latest
2024-02-16 21:48:55 +00:00
steps:
2024-02-22 12:06:47 +00:00
# The first step is provided by GitHub and it checks out
# the master branch on the runner
- uses: actions/checkout@master
with:
submodules: true
# This step uses an action created by a user which sets
# up Hugo on the runner and runs the hugo command to build
# the site
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
2024-02-22 12:10:01 +00:00
hugo-version: '0.122.2'
2024-02-22 12:06:47 +00:00
- name: Build
2024-02-22 12:10:01 +00:00
run: hugo
2024-02-22 12:06:47 +00:00
# The last step deploys the site to my server by running
# the deploy script located in the ci directory
# within the repo
- name: deploy
run: source $GITHUB_WORKSPACE/ci/deploy.sh
env:
# This section sets up the environment used by the
# deploy script. These values are injected from
# the repo's secret store
ACTIONS_DEPLOY_KEY: ${{ secrets.BDEPLOY_KEY }}
SSH_USERNAME: ${{ secrets.SSH_USER }}
SERVER_ADDRESS: ${{ secrets.SSH_SERVER }}
SERVER_DESTINATION: ${{ secrets.DEST_DIR }}
SSH_PORT: ${{ secrets.SSH_PORT }}