Skip to content

Commit

Permalink
fix: update gh_pages bundled config (#943)
Browse files Browse the repository at this point in the history
* update gh-pages config

* update changelog

* update changelog
  • Loading branch information
KonnorRogers authored Nov 21, 2024
1 parent 3e79186 commit a478184
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased

- Avoid duplication in r.bridgetown implementation (#939) @jeremyevans
- Update `gh_pages` bundled configuration (#943)[#943](https://github.com/bridgetownrb/bridgetown/pull/943) ([@konnorrogers](https://github.com/konnorrogers))

## [2.0.0.beta3] - 2024-11-16

Expand Down Expand Up @@ -49,7 +50,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial batch of swapping Active Support extensions for in-house alternatives [#881](https://github.com/bridgetownrb/bridgetown/pull/881) ([@jaredcwhite](https://github.com/jaredcwhite)) & ([@ayushn21](https://github.com/ayushn21))
- Refactor start command to use Rackup instead of Puma [#875](https://github.com/bridgetownrb/bridgetown/pull/875) ([@ayushn21](https://github.com/ayushn21))
- Use rack 3 proc responses for SSE live reload [#858](https://github.com/bridgetownrb/bridgetown/pull/858) ([@ayushn21](https://github.com/ayushn21))
- Refactor front matter handling and extract behavior into loaders [#778](https://github.com/bridgetownrb/bridgetown/pull/778) ([@michaelherold](https://github.com/michaelherold))
- Refactor front matter handling and extract behavior into loaders [#778](https://github.com/bridgetownrb/bridgetown/pull/778) ([@michaelherold](https://github.com/michaelherold))

### Removed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: "20"
node-version: "22"
cache: "npm"
- run: npm install

Expand All @@ -29,7 +29,7 @@ jobs:
run: bin/bridgetown deploy

- name: Upload build artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: ./output

Expand All @@ -48,4 +48,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit a478184

Please sign in to comment.