Serve dev and prod from same dir on server #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy website to production server | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.119.0' | |
extended: true | |
- name: Build | |
env: | |
HUGO_ENV: production | |
URL_PRODUCTION: ${{ vars.URL_PRODUCTION }} | |
run: hugo --minify -b $URL_PRODUCTION | |
- name: Deploy | |
uses: appleboy/scp-action@master | |
with: | |
host: ${{ vars.IP_PRODUCTION }} | |
username: ${{ secrets.SSH_USERNAME_PRODUCTION }} | |
key: ${{ secrets.SSH_KEY_PRODUCTION }} | |
source: "public/" | |
target: ${{ vars.WEBROOT_PRODUCTION }} | |
strip_components: 1 |