Skip to content

WIP: node list workflow #85

WIP: node list workflow

WIP: node list workflow #85

Workflow file for this run

---
name: Deploy website to dev 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 Hugo
env:
HUGO_ENV: production
URL_DEVELOPMENT: ${{ vars.URL_DEVELOPMENT }}
run: hugo --minify -b "$URL_DEVELOPMENT/$GITHUB_REF_NAME" --destination "branch/$GITHUB_REF_NAME"
- name: Update nodes count
run: |
cd branch/$GITHUB_REF_NAME
LASTCHANGE=$(date --iso-8601=seconds)
ls
# sed -i "/\"lastchange\":/c\ \"lastchange\":\"$$LASTCHANGE\"," static/berlin.json && \
# NODECOUNT=$$(curl -s 'https://hopglass.berlin.freifunk.net/nodes.json' | jq '.nodes | length') && \
# sed -i "/\"nodes\":/c\ \"nodes\":$$NODECOUNT" static/berlin.json
- name: Create robots.txt
run: 'echo -e "User-agent: *\nDisallow: /" > 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