Skip to content

Deploy to GitHub Pages #17435

Deploy to GitHub Pages

Deploy to GitHub Pages #17435

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- dev
schedule:
- cron: '15 */2 * * *'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: "Install Dependencies"
run: npm ci
working-directory: jonathan-treffler.de
- name: "Build static Website"
run: npm run generate
working-directory: jonathan-treffler.de
- name: Deploy
uses: JamesIves/[email protected]
with:
BRANCH: master
FOLDER: jonathan-treffler.de/dist/
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BASE_BRANCH: dev
SINGLE_COMMIT: true
CLEAN: true