Skip to content

Commit 1fce145

Browse files
Protocol Buffer TeamLogofile
authored andcommitted
This update includes the following:
* Publishes the "Proto Serialization is not Cannoical" topic * Updates the documentation publishing script to accommodate the move to Node 20 on GitHub PiperOrigin-RevId: 623514390 Change-Id: I80fa75dc9fcd7bc3d51906653008979adbc0ec31
1 parent b5911c4 commit 1fce145

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/gh-pages.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,33 @@ on:
77
branches:
88
- main
99
workflow_dispatch:
10+
1011
jobs:
1112
deploy:
1213
runs-on: ubuntu-22.04
1314
steps:
14-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1516
with:
1617
submodules: true # Fetch Hugo themes (true OR recursive)
1718
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
1819

20+
- uses: actions/setup-node@v4
21+
with:
22+
node-version: 20
23+
1924
- name: Setup Hugo
20-
uses: peaceiris/actions-hugo@v2
25+
uses: peaceiris/actions-hugo@v3
2126
with:
2227
hugo-version: 0.121.2
2328
extended: true
29+
2430
- name: Install Dependencies
2531
run: npm install autoprefixer postcss postcss-cli
2632
- name: Build
2733
run: hugo --minify
2834

2935
- name: Deploy
30-
uses: peaceiris/actions-gh-pages@v3
36+
uses: peaceiris/actions-gh-pages@v4
3137
if: github.ref == 'refs/heads/main'
3238
with:
3339
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)