Skip to content

Commit c208f04

Browse files
authored
Use actions/checkout@v3 action, node:lts image
1 parent cecc0e9 commit c208f04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515
- name: Build the assets using Webpack
1616
run: |
1717
docker run \
1818
-v ${{ github.workspace }}:/app -w /app \
19-
node:16-alpine /bin/ash -c "npm ci && npx encore prod"
19+
node:lts /bin/bash -c "npm install && npx encore prod"
2020
- name: Publish the generated assets to GitHub Pages
2121
uses: crazy-max/[email protected]
2222
with:
@@ -26,4 +26,4 @@ jobs:
2626
fqdn: leonboot.dev
2727
jekyll: false
2828
env:
29-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)