Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gbrah committed Oct 11, 2024
2 parents 20c84f6 + 086c57c commit 7306b90
Show file tree
Hide file tree
Showing 715 changed files with 45,363 additions and 11,374 deletions.
41 changes: 41 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions"
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.)
directory: "/"
schedule:
interval: "monthly"
groups:
dev-dependencies:
patterns:
- "*" # Group all updates
- package-ecosystem: "npm" # See documentation for possible values
directory: "/docs/" # Location of package manifests
schedule:
interval: "monthly"
groups:
dev-dependencies:
patterns:
- "*" # Group all updates
- package-ecosystem: "gradle"
directories:
- "/material/*"
schedule:
interval: "monthly"
groups:
dev-dependencies:
patterns:
- "*" # Group all updates
- package-ecosystem: "pip"
directory: "/material/rest-api-ui-ktor-quiz-collector/result-explorer/"
schedule:
interval: "monthly"
groups:
dev-dependencies:
patterns:
- "*" # Group all updates
22 changes: 4 additions & 18 deletions .github/workflows/vuepress-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,26 @@
name: Deploy to ghpages

on:
# trigger deployment on every push to main branch
push:
branches: [main]
# trigger deployment manually
workflow_dispatch:

jobs:
docs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
# fetch all commits to get last updated time or other git log info
fetch-depth: 0

- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
# choose node.js version to use
node-version: 18

# run build script
node-version: lts/*
- name: Build VuePress site
run: cd docs && npm install && npm run docs:build

# please check out the docs of the workflow for more details
# @see https://github.com/crazy-max/ghaction-github-pages
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
uses: crazy-max/ghaction-github-pages@v4
with:
# deploy to gh-pages branch
target_branch: gh-pages
# deploy the default output dir of VuePress
build_dir: docs/src/.vuepress/dist
env:
# @see https://docs.github.com/en/actions/reference/authentication-in-a-workflow#about-the-github_token-secret
Expand Down
Loading

0 comments on commit 7306b90

Please sign in to comment.