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 6db3438
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
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 https://dev.ff.berlin --destination dev/$GITHUB_REF_NAME

- 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: "/var/www/berlin.freifunk.net/www/"
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 Down

0 comments on commit 6db3438

Please sign in to comment.