mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-13 07:46:08 +00:00
Bumps [crazy-max/ghaction-github-pages](https://github.com/crazy-max/ghaction-github-pages) from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/crazy-max/ghaction-github-pages/releases)
- [Commits](fbf0a4fa4e...df5cc2bfa7)
---
updated-dependencies:
- dependency-name: crazy-max/ghaction-github-pages
dependency-version: 4.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
34 lines
871 B
YAML
34 lines
871 B
YAML
name: Build and Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7
|
|
|
|
- name: Setup Node 20
|
|
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.0.3
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Build Vuepress Pages
|
|
run: npm install && npm run build
|
|
# env:
|
|
# VUEPRESS_BASE: '/ocelot.social/'
|
|
|
|
- name: Deploy Vuepress to Github Pages
|
|
uses: crazy-max/ghaction-github-pages@df5cc2bfa78282ded844b354faee141f06b41865 # v4.0.0
|
|
with:
|
|
target_branch: gh-pages
|
|
build_dir: docs/.vuepress/dist
|
|
author: Wolfgang Huß <vorstand@busfaktor.org>
|
|
fqdn: ocelot.social
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|