-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 670c5b1 🚀
- Loading branch information
Godot Organization
committed
Dec 4, 2024
0 parents
commit 255111b
Showing
14 changed files
with
5,861 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Continuous integration | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
schedule: | ||
# Run every 15 minutes of every hour, starting at 5 minutes (5m, 20m, 35m, 50m). | ||
# The slight offset is there to try and avoid the high load times. | ||
- cron: '5/15 * * * *' | ||
|
||
# Make sure jobs cannot overlap (e.g. one from push and one from schedule). | ||
concurrency: | ||
group: pages-ci | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Build and deploy to GitHub Pages | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
cache: 'npm' | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Build the static content using npm | ||
run: npm run build | ||
|
||
- name: Fetch pull request data | ||
run: npm run compose-db | ||
env: | ||
GRAPHQL_TOKEN: ${{ secrets.GRAPHQL_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Archive production artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: web-static | ||
path: out | ||
|
||
- name: Deploy to GitHub Pages 🚀 | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
branch: gh-pages | ||
folder: out | ||
# Configure the commit author. | ||
git-config-name: 'Godot Organization' | ||
git-config-email: '<>' | ||
# Don't keep the history. | ||
single-commit: true |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500i,700,900&display=swap&subset=latin-ext" rel="stylesheet"> | ||
<link rel="icon" type="image/png" href="favicon.png"> | ||
|
||
<link href="styles/shared/normalize.css" rel="stylesheet"> | ||
<link href="styles/shared/global.css" rel="stylesheet"> | ||
|
||
<script src="scripts/shared/global.js"></script> | ||
|
||
<title>Godot PRs by File</title> | ||
<meta name="description" content="Godot Engine PRs grouped by individual source files they affect"> | ||
<meta name="keywords" content="godot, godot engine, gamedev, project management"> | ||
|
||
<script src="scripts/index.js"></script> | ||
</head> | ||
<body> | ||
<entry-component></entry-component> | ||
|
||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.