Skip to content

Change hugo env to prod and simplify github run conditions #32

Change hugo env to prod and simplify github run conditions

Change hugo env to prod and simplify github run conditions #32

Workflow file for this run

name: Deploy website to dev server
on:
push:
branches-ignore:
- main
pull_request:
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
run: hugo --minify -b $URL_DEVELOPMENT/$GITHUB_REF_NAME --destination branch/$GITHUB_REF_NAME
- name: Create robots.txt
description: Because we use prod env we have to explicitly create a disallow robots.txt and place it so that it is deployed to the webroot.

Check failure on line 34 in .github/workflows/deploy-dev.yml

View workflow run for this annotation

GitHub Actions / Deploy website to dev server

Invalid workflow file

The workflow is not valid. .github/workflows/deploy-dev.yml (Line: 34, Col: 9): Unexpected value 'description'
run: 'echo "User-agent: *\nDisallow: /\nSitemap: /sitemap.xml" > branch/robots.txt'
- name: Deploy
uses: appleboy/scp-action@master
with:
host: ${{ vars.IP_DEVELOPMENT }}
username: ${{ secrets.SSH_USERNAME_DEVELOPMENT }}
key: ${{ secrets.SSH_KEY_DEVELOPMENT }}
source: "branch/${{ github.ref.name }}"
target: ${{ vars.WEBROOT_DEVELOPMENT}}
strip_components: 1