Compare commits
No commits in common. "main" and "v240221-1345" have entirely different histories.
main
...
v240221-13
2 changed files with 6 additions and 10 deletions
|
@ -7,15 +7,15 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: node:21-bullseye # Required by actions/checkout and actions/upload-artifact
|
image: node:16-bullseye # Required by actions/checkout and actions/upload-artifact
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm install
|
run: npm install
|
||||||
- name: Build
|
- name: Build
|
||||||
run: npx @11ty/eleventy
|
run: npx @11ty/eleventy
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
path: dist/
|
path: dist/
|
||||||
|
@ -23,13 +23,13 @@ jobs:
|
||||||
needs: [build]
|
needs: [build]
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: node:21-bullseye # Required by actions/download-artifact
|
image: node:16-bullseye # Required by actions/download-artifact
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
- name: rsync deployment
|
- name: rsync deployment
|
||||||
uses: https://git.archive.hostux.fr/Hostux/rsync-deployments@6.0.0
|
uses: https://git.hostux.fr/Hostux/rsync-deployments@6.0.0
|
||||||
with:
|
with:
|
||||||
switches: -az --no-o --no-g --no-devices --no-specials --delete --progress --checksum
|
switches: -az --no-o --no-g --no-devices --no-specials --delete --progress --checksum
|
||||||
path: .
|
path: .
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
||||||
"prHourlyLimit": 0
|
|
||||||
}
|
|
Loading…
Reference in a new issue