Releases: EdricChan03/action-build-deploy-ghpages
v3.2.0: Bump Ruby to 3.4.x
💥 Breaking changes
- Ruby has been bumped to the latest minor version (3.4.2). (View the release notes for Ruby 3.4.2)
What's Changed
- action: bump ruby from 3.2.0 to 3.2.1 by @dependabot in #36
- action: bump ruby from 3.2.1 to 3.2.2 by @dependabot in #38
- workflow: bump actions/checkout from 3 to 4 by @dependabot in #39
- action: bump ruby from 3.2.2 to 3.3.0 by @dependabot in #40
- action: bump ruby from 3.3.0 to 3.3.4 by @dependabot in #44
- action: bump ruby from 3.3.4 to 3.3.5 by @dependabot in #45
- action: bump ruby from 3.3.5 to 3.4.1 by @dependabot in #47
Full Changelog: v3.1.0...v3.2.0
v3.1.0: Bump Ruby to 3.2.0
💥 Breaking changes
- Ruby has been bumped to the latest minor version (3.2.0). (View the release notes for Ruby 3.2.0)
What's Changed
- action: bump ruby from 3.1.2 to 3.1.3 by @dependabot in #33
- action: bump ruby from 3.1.3 to 3.2.0 by @dependabot in #34
Full Changelog: v3.0.0...v3.1.0
v3.0.0: Ruby 3 support
💥 Breaking changes
- Ruby has been bumped to version 3, necessitating a major version bump in the event of other breaking changes.
What's Changed
Misc changes
Full Changelog: v2.6.0...v3.0.0
v2.6.0
💥 Breaking changes
-
Jekyll sites will now be built in production mode by default. To use the old default mode (development), specify the
jekyll_env
input:- uses: EdricChan03/[email protected] with: jekyll_env: 'development'
See the Jekyll docs on environments for more information, as well as issue #21 for additional context.
What's Changed
- Add support for specifying the Jekyll build environment by @EdricChan03 in #25
Misc changes
- workflow: bump azohra/shell-linter from 0.4.0 to 0.5.0 by @dependabot in #17
- workflow: bump azohra/shell-linter from 0.5.0 to 0.6.0 by @dependabot in #19
- workflow: bump actions/checkout from 2 to 3 by @dependabot in #24
- Update all references of the default branch by @EdricChan03 in #26
New Contributors
- @dependabot made their first contribution in #17
- @EdricChan03 made their first contribution in #26
Full Changelog: v2.5.0...v2.6.0
v2.5.0
💥 Breaking changes
- Update Docker Ruby version to v2.7 (bfc9166)
✨ New features
- Add support for specifying the specific version of Bundler to use (219c9a6)
📝 Documentation updates
- README: Strikeout info about PAT requirement (b992dfe)
- README: Specify that
github.token
can be used for thegithub_token
input (a81ac10)
🤘 Contributors
Thanks to the following contributors for helping out with this release:
v2.4.0
✨ New features
- Add support for showing the log from
bundle install
only if it returns with a non-zero exit code (a0bde56) (cherry-picked from #8)
📄 License updates
- Update license year (65eda83)
⚠️ Notice
This release no longer marks the gh_pages_token
input as required. You may now omit the input from your workflow(s):
with:
- github_token: ${{ secrets.GITHUB_TOKEN }} # Or github.token
- - gh_pages_token: ${{ secrets.GH_PAGES_TOKEN }}
And remove the GH_PAGES_TOKEN
secret from your repository's secrets.
See the following links for more information:
- The commit (63c6ec9)
- The GitHub Community post
- And issue #13
v2.3.0
✨ New features
- Add support for specifying a flag to skip deployment (8ba9e36) (#12)
- Allow passing options to the
jekyll build
command (9e23293) (#9) - Annotate all inputs with the
required
field (f3e74d0)
Starting from v2.3.0
, you can also now target the latest v2
major version of the Action:
- uses: EdricChan03/[email protected]
+ uses: EdricChan03/action-build-deploy-ghpages@v2
🐛 Bug fixes/Other changes
🤘 Contributors
Thanks to the following contributors for contributing to this release:
- @jhoward321 (#11, #12)
- @fabacab (#9, #10)
- @EdricChan03
v2.2.1
v2.2.0
This release changes the way that environment variable commands are evaluated in the script to use the eval
command instead of the former bash -c
command, which would be run in a subshell.
Note: In the future, this may be reverted to the former implementation.
There are no other changes in this release.
v2.1.1
This releases fixes an issue (#2) where there was a redundant check for an environment variable (GH_PAGES_TOKEN
) which would be empty unless explicitly specified as an environment variable.
There are no other changes for this release.