Skip to content

Commit

Permalink
Add dev deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
noxilixon committed Nov 19, 2023
1 parent 3eca82d commit a9857fb
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 3 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
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 Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.119.0'
extended: true

- name: Build
run: hugo --minify -b $URL_DEVELOPMENT/$GITHUB_REF_NAME --destination dev/$GITHUB_REF_NAME

- name: Add robots.txt
run: echo $'User-agent: *\nDisallow: /' > robots.txt

- name: Deploy
uses: appleboy/scp-action@master
with:
host: ${{ secrets.PRODUCTION_SERVER }}
username: ${{ secrets.PRODUCTION_USERNAME }}
key: ${{ secrets.PRODUCTION_SSH_KEY }}
source: "dev/${{ github.ref.name }}"
target: ${{ vars.WEBROOT_DEVELOPMENT}}
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Deploy Website
name: Deploy website to production server

on:
push:
branches:
- hugo # Set a branch to deploy
- main
pull_request:

jobs:
Expand All @@ -24,7 +24,7 @@ jobs:
extended: true

- name: Build
run: hugo --minify -b https://website.ff.berlin
run: hugo --minify -b $URL_PRODUCTION

- name: Deploy
uses: appleboy/scp-action@master
Expand Down

0 comments on commit a9857fb

Please sign in to comment.