Skip to content

Commit

Permalink
Pages Setup (#5)
Browse files Browse the repository at this point in the history
* initial netlify test

Signed-off-by: James McLeod <james.mcleod@finos.org>

* Update team.mdx (#2)

Signed-off-by: SeniorStoryteller <66965127+SeniorStoryteller@users.noreply.github.com>
Signed-off-by: James McLeod <james.mcleod@finos.org>

* add gh-pages deploy config and actions

Signed-off-by: James McLeod <james.mcleod@finos.org>

* update config

Signed-off-by: James McLeod <james.mcleod@finos.org>

* update package.json

Signed-off-by: James McLeod <james.mcleod@finos.org>

* update action paths

Signed-off-by: James McLeod <james.mcleod@finos.org>

* update action paths

Signed-off-by: James McLeod <james.mcleod@finos.org>

* update config

Signed-off-by: James McLeod <james.mcleod@finos.org>

* update build actions

Signed-off-by: James McLeod <james.mcleod@finos.org>

Co-authored-by: SeniorStoryteller <66965127+SeniorStoryteller@users.noreply.github.com>
  • Loading branch information
James McLeod and SeniorStoryteller authored Jun 15, 2022
1 parent e6d4fc0 commit e03c9e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
cache: yarn

- name: Install dependencies
run: yarn install --frozen-lockfile
run: yarn --cwd website install --frozen-lockfile
- name: Build website
run: yarn build
run: yarn --cwd website build

# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
Expand All @@ -34,7 +34,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./build
publish_dir: ./website/build
# The following lines assign commit authorship to the official
# GH-Actions bot for deploys to `gh-pages` branch:
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
cache: yarn

- name: Install dependencies
run: yarn install --frozen-lockfile
run: yarn --cwd website install --frozen-lockfile
- name: Test build website
run: yarn build
run: yarn --cwd website build
2 changes: 1 addition & 1 deletion website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const projectSlug = 'linux-foundation-podcast-project'
// Replace 'FINOS' with {name of copyright owner}
const copyrightOwner = 'The Linux Foundation'

module.exports = {
module.exports = {
title: `${projectName}`,
tagline: `${projectName}`,
url: 'https://linuxfoundation.github.io/',
Expand Down

0 comments on commit e03c9e0

Please sign in to comment.