b9102b8836
4 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
612a5ba3a9 |
Bump JamesIves/github-pages-deploy-action from 4.1.7 to 4.3.0 (#4455)
Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.7 to 4.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/JamesIves/github-pages-deploy-action/releases">JamesIves/github-pages-deploy-action's releases</a>.</em></p> <blockquote> <h2>v4.3.0</h2> <h2>Changes</h2> <ul> <li>Implements a new option available behind a flag, <code>force</code>. If set to <code>false</code> the action will no longer force push, instead attempting 3 times to resolve rejected commits when making parallel/subsequent deployments. In a future version <code>false</code> will be set as the default. Massive thanks to <a href="https://github.com/rossjrw"><code>@rossjrw</code></a> for this feature addition.</li> <li>Modified the Node version which the action is developed/tested against from <code>14</code> to <code>16</code>.</li> </ul> <h2>Minor Changes</h2> <ul> <li>Third-party dependency updates.</li> <li>Test coverage improvements.</li> </ul> <h2>v4.2.5</h2> <h2>Minor Changes</h2> <ul> <li>Corrects an issue in the publishing pipeline that was causing workflow failures.</li> </ul> <h2>v4.2.4</h2> <h2>Minor Changes</h2> <ul> <li>Modified how workflow notices get displayed. (<a href="https://github-redirect.dependabot.com/JamesIves/github-pages-deploy-action/issues/1033">#1033</a> Thanks to <a href="https://github.com/hemberger"><code>@hemberger</code></a>)</li> <li>Dependency upgrades.</li> </ul> <h2>v4.2.3</h2> <h2>Minor Changes</h2> <ul> <li>Improved action logging. This is part 1 or 2 updates that will make the logs easier to traverse. Warnings and notices are now provided so you don't need to expand the logs to get the termination message.</li> <li>Dependency bumps across the board.</li> </ul> <h2>v4.2.2</h2> <h2>Minor Changes</h2> <ul> <li>Introduces major version tags. You can now point your workflow to <code>JamesIves/github-pages-deploy-action@v4</code> if you'd like to always have the most cutting edge changes outside of using the release branch directly.</li> <li>The version tags for this project now include a <code>v</code> to be consistent with other officially provided actions by GitHub. You can use <code>JamesIves/github-pages-deploy-action@v4.2.2</code> for instance. Dependabot should pick up this change automatically.</li> </ul> <h2>4.2.1</h2> <h2>Minor Changes</h2> <ul> <li>Resolves an issue where the operating system warning was showing incorrectly.</li> </ul> <h2>4.2.0</h2> <h1>Happy New Year 2022!</h1> <p><img src="https://media.giphy.com/media/pYhFb0kn2GhQQ/giphy.gif" alt="London" /></p> <h2>Minor Changes</h2> <ul> <li>Implements a warning if you're using an unsupported operating system. This will occur if the workflow runs within MacOS or Windows. The workflow will not be cancelled.</li> <li>The action is now case insensitive, allowing you to make casing changes to files so long as you commit them using the <code>git mv</code> command prior to the workflow running. (<a href="https://github-redirect.dependabot.com/JamesIves/github-pages-deploy-action/issues/895">#895</a>)</li> <li>Fixes an issue that was causing <code>single-commit</code> to fail when using <code>repository-name</code> if the branch name was equal from the origin to destination. (<a href="https://github-redirect.dependabot.com/JamesIves/github-pages-deploy-action/issues/665">#665</a>)</li> <li>Enabled Dependabot updates for the GitHub Actions that are used as part of the projects integration tests.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
026563cb1e |
Deploy dev docs - install dependencies (#4222)
# Objective
- #3535 introduced deploying docs without installing dependencies
- https://github.com/bevyengine/bevy/runs/5562769081?check_suite_focus=true
## Solution
- copied
|
||
|
|
6ff17eaab8 |
Deploy dev docs - fix sed command (#4221)
# Objective - #3535 introduced deploying docs with an error in sed command ## Solution - fix sed command - make the command cross platform |
||
|
|
e020c57211 |
Add automatic docs deployment to GitHub Pages (#3535)
# Objective Partially address #407 by setting up automated deployments of `bevy`'s API reference to GitHub Pages. ## Solution Set up a GitHub Actions workflow that builds the docs on every push to `main` and pushes a new commit to a `gh-pages` (or `docs` branch). A few smaller additions to better address #407: - A top level redirect was added to take "docs.bevyengine.org" directly to the `bevy` crate docs. - A GitHub Pages CNAME file for supporting a publicly viewable domain instead of `github.io` - A robots.txt file is added to disable all search engine crawlers that respect it from crawling it (avoid having conflicting Google search results) - A .nojekyl file to speed up deployments since there is no Jekyll templating in the output. This may require configuration of the `GITHUB_TOKEN` of the CI to successfully run this. ## Followup For this to completely resolve #407, a subdomain of https://bevyengine.org/ needs to be set up to point to the CNAME location. This is initially set to "dev-docs.bevyengine.org". Co-authored-by: Carter Anderson <mcanders1@gmail.com> |