homepage/.forgejo/workflows/deploy.yaml
Louis Guidez reind33r 1c48e8d089
Some checks failed
/ build (push) Successful in 19s
/ deploy (push) Failing after 15s
testing actions
2024-02-07 23:39:22 +01:00

32 lines
No EOL
697 B
YAML

# on:
# push:
# tags:
# - 'v*'
on: [push]
jobs:
build:
runs-on: docker
container:
image: node:16-bullseye # Default for Forgejo
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Build
run: npx @11ty/eleventy
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
deploy:
needs: [build]
runs-on: docker # Defaults to Alpine in my runner
steps:
- uses: actions/download-artifact@v3
with:
name: dist
- name: List all files
shell: ash
run: |
ls -la dist