Compare commits
12 commits
v240221-13
...
main
Author | SHA1 | Date | |
---|---|---|---|
40c818327e | |||
29c32e36b7 | |||
842db75dbc | |||
33f7c85591 | |||
27dd7d3639 | |||
ee5d83f0a9 | |||
22bc996d92 | |||
276950e16f | |||
e63f561650 | |||
84de1a1d85 | |||
b058ff182a | |||
b5279f3567 |
2 changed files with 9 additions and 5 deletions
|
@ -7,15 +7,15 @@ jobs:
|
|||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:16-bullseye # Required by actions/checkout and actions/upload-artifact
|
||||
image: node:21-bullseye # Required by actions/checkout and actions/upload-artifact
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
- name: Build
|
||||
run: npx @11ty/eleventy
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: dist
|
||||
path: dist/
|
||||
|
@ -23,9 +23,9 @@ jobs:
|
|||
needs: [build]
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:16-bullseye # Required by actions/download-artifact
|
||||
image: node:21-bullseye # Required by actions/download-artifact
|
||||
steps:
|
||||
- uses: actions/download-artifact@v3
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: dist
|
||||
- name: rsync deployment
|
||||
|
|
4
renovate.json
Normal file
4
renovate.json
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"prHourlyLimit": 0
|
||||
}
|
Loading…
Reference in a new issue