Compare commits

...

2 commits

Author SHA1 Message Date
739c7a4365 Refactor workflow to use toml-action for environment settings in pipeline-test.yaml.
All checks were successful
Build and Deploy Hugo Site / build_and_deploy (push) Successful in 18s
2024-04-18 08:52:15 +02:00
66804eb88c Add environment variable for development environment in hugo.toml. 2024-04-18 08:52:05 +02:00
2 changed files with 63 additions and 42 deletions

View file

@ -11,53 +11,60 @@ jobs:
steps: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v2.4.0
- name: env-yaml-file # - name: env-yaml-file
uses: pietrobolcato/action-read-yaml@main # uses: pietrobolcato/action-read-yaml@main
id: read_action_js # id: read_action_js
# with:
# config: ${{ github.workspace }}/deploy_env.yaml
# env-var-prefix: myEnv
- name: env-toml-file
uses: SebRollen/toml-action@v1.2.0
id: read_toml
with: with:
config: ${{ github.workspace }}/deploy_env.yaml file: 'hugo.toml'
env-var-prefix: myEnv field: 'environment'
- name: Set up Go # - name: Set up Go
uses: actions/setup-go@v5.0.0 # uses: actions/setup-go@v5.0.0
with: # with:
go-version: '1.20.5' # go-version: '1.20.5'
- name: Cache Go modules # - name: Cache Go modules
uses: actions/cache@v3 # uses: actions/cache@v3
with: # with:
path: ~/go/pkg/mod # path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} # key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: | # restore-keys: |
${{ runner.os }}-go- # ${{ runner.os }}-go-
- name: Set up Node.js # - name: Set up Node.js
uses: actions/setup-node@v4.0.2 # uses: actions/setup-node@v4.0.2
with: # with:
node-version: '20' # node-version: '20'
cache: 'npm' # cache: 'npm'
- name: Cache Node modules # - name: Cache Node modules
uses: actions/cache@v3 # uses: actions/cache@v3
with: # with:
path: ~/.npm # path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} # key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: | # restore-keys: |
${{ runner.os }}-node- # ${{ runner.os }}-node-
- name: Install PostCSS # - name: Install PostCSS
run: | # run: |
npm install -g postcss postcss-cli # npm install -g postcss postcss-cli
npm install autoprefixer # npm install autoprefixer
- name: Set up Hugo Extended # - name: Set up Hugo Extended
uses: peaceiris/actions-hugo@v3.0.0 # uses: peaceiris/actions-hugo@v3.0.0
with: # with:
hugo-version: '0.121.2' # hugo-version: '0.121.2'
extended: true # extended: true
- name: Build Hugo site # - name: Build Hugo site
run: hugo --minify # run: hugo --minify
- name: Setup rsync - name: Setup rsync
run: apt-get update && apt-get install -y rsync run: apt-get update && apt-get install -y rsync
@ -68,15 +75,29 @@ jobs:
ssh-private-key: ${{ secrets.VFO_SSH_KEY }} ssh-private-key: ${{ secrets.VFO_SSH_KEY }}
- name: Deploy to Development - name: Deploy to Development
if: env.myEnv_env == 'development' if: steps.read_toml.outputs.environment == 'development'
run: | run: |
rsync -avz --delete ./public/ verua.info@verua.info:/preview.verua.info/ rsync -avz --delete ./public/ verua.info@verua.info:/preview.verua.info/
env: env:
RSYNC_RSH: 'ssh -p 2121 -o StrictHostKeyChecking=no' RSYNC_RSH: 'ssh -p 2121 -o StrictHostKeyChecking=no'
- name: Deploy to Production - name: Deploy to Production
if: env.myEnv_env == 'production' if: steps.read_toml.outputs.environment == 'production'
run: | run: |
rsync -avz --delete ./public/ verua.info@verua.info:/httpdocs/ rsync -avz --delete ./public/ verua.info@verua.info:/httpdocs/
env: env:
RSYNC_RSH: 'ssh -p 2121 -o StrictHostKeyChecking=no' RSYNC_RSH: 'ssh -p 2121 -o StrictHostKeyChecking=no'
# - name: Deploy to Development
# if: env.myEnv_env == 'development'
# run: |
# rsync -avz --delete ./public/ verua.info@verua.info:/preview.verua.info/
# env:
# RSYNC_RSH: 'ssh -p 2121 -o StrictHostKeyChecking=no'
# - name: Deploy to Production
# if: env.myEnv_env == 'production'
# run: |
# rsync -avz --delete ./public/ verua.info@verua.info:/httpdocs/
# env:
# RSYNC_RSH: 'ssh -p 2121 -o StrictHostKeyChecking=no'

View file

@ -15,7 +15,7 @@ defaultContentLanguage = "de"
# disable language # disable language
disableLanguages = ["en"] disableLanguages = ["en"]
hasCJKLanguage = false # If hasCJKLanguage true, auto-detect Chinese/Japanese/Korean Languages in the content. see: https://gohugo.io/getting-started/configuration/#hascjklanguage hasCJKLanguage = false # If hasCJKLanguage true, auto-detect Chinese/Japanese/Korean Languages in the content. see: https://gohugo.io/getting-started/configuration/#hascjklanguage
environment = "development"
########################### Services ############################# ########################### Services #############################
[services] [services]