Skip to content

Commit

Permalink
Deploy documentation via GitHub actions (#82)
Browse files Browse the repository at this point in the history
* feat: Deploy documentation changes via GitHub actions
  • Loading branch information
Levdbas authored Nov 8, 2024
1 parent 2b06d5b commit ed8484c
Show file tree
Hide file tree
Showing 445 changed files with 503 additions and 31,088 deletions.
3 changes: 3 additions & 0 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const redirectCollection = require('./lib/redirectCollection');
module.exports = function (config) {
// Copy folders and files.
config.addPassthroughCopy('build');
config.setUseGitIgnore(false);

// Filters.
config.addFilter('manifest', manifestFilter);
Expand Down Expand Up @@ -82,7 +83,9 @@ module.exports = function (config) {
});

site.versions.forEach((version) => {

config.addCollection(version.slug, function (collection) {

return pageCollection(collection, version.glob);
});

Expand Down
7 changes: 7 additions & 0 deletions .eleventyignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.DS_Store
npm-debug.log*
node_modules/
vendor/
build/
docs/
.vscode/
81 changes: 81 additions & 0 deletions .github/workflows/gh-pages-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# Automatically deploy the Timber documentation to GitHub Pages

# 1. Checks out the documentation repository in the /timber-docs directory
# 2. Checks out the timber repository in the /timber directory
# 3. Sets up Node.js
# 4. Sets up PHP 8.2 and Composer
# 5. Builds the static site & builds artifacts
# 6. Deploys artifacts to GitHub Pages
name: Deploy to GitHub Pages

on:
# Runs on pushes targeting the default branch
#push:
# branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: 'pages'
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: ./timber-docs
token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v4
with:
repository: timber/timber
path: ./timber
token: ${{ github.token }}
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version: 18
- uses: 'shivammathur/setup-php@v2'
with:
php-version: '8.2'
- name: Install composer
uses: ramsey/composer-install@v3
with:
working-directory: 'timber-docs'
- name: Build files
run: |
cd ./timber-docs
npm run build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './timber-docs/docs'
# Deployment job
deploy:
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
9 changes: 5 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.DS_Store
npm-debug.log*
node_modules/
_data/mixManifest.json
vendor/
.vscode/

# Never ignore the content/ folder, or this will stop working
# Never ignore the /build/ or the /docs/build/ folder, otherwise they won’t appear on timber.github.io/docs/
build/
content/
docs/
.vscode/
27 changes: 0 additions & 27 deletions _data/mixManifest.json

This file was deleted.

1 change: 0 additions & 1 deletion build/css/mobile.css

This file was deleted.

1 change: 0 additions & 1 deletion build/css/mobile.css.map

This file was deleted.

Loading

0 comments on commit ed8484c

Please sign in to comment.