Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate robolectric.org to use MkDocs #212

Merged
merged 8 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 3 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
version: 2

updates:
- package-ecosystem: "bundler"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

- package-ecosystem: "github-actions"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
29 changes: 0 additions & 29 deletions .github/workflows/build-with-jekyll.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "Deploy website"

on:
push:
branches: [ master, "new_website" ]

jobs:
deploy_website:
name: "Deploy website"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.x
cache: 'pip'

- name: Install necessary tools
run: pip install -r requirements.txt

- name: Copy Javadoc
run: cp -r javadoc/ docs/javadoc/
utzcoz marked this conversation as resolved.
Show resolved Hide resolved

- name: Deploy website
run: mkdocs gh-deploy --force
8 changes: 1 addition & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
_site
build
.idea
.bundle
.sass-cache
.DS_Store
*.iml
*.ipr
*.iws
vendor
.jekyll-cache
.jekyll-metadata
site/
1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

33 changes: 0 additions & 33 deletions Gemfile

This file was deleted.