homepage/.forgejo/workflows/deploy.yaml
Louis Guidez reind33r df2e9a107b
Some checks are pending
/ deploy (push) Waiting to run
/ build (push) Successful in 18s
testing actions
2024-02-07 23:40:59 +01:00

31 lines
No EOL
731 B
YAML

# on:
# push:
# tags:
# - 'v*'
on: [push]
jobs:
build:
runs-on: docker
container:
image: node:16-bullseye # Required by actions/checkout and actions/upload-artifact
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: node:16-bullseye # Required by actions/download-artifact
steps:
- uses: actions/download-artifact@v3
with:
name: dist
- name: List all files
run: |
ls -la dist