Vitaliy Potyarkin
4c65810699
Some checks failed
build static site / build (pull_request) Failing after 23s
Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
39 lines
947 B
YAML
39 lines
947 B
YAML
name: build static site
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: |-
|
|
bin/
|
|
themes/
|
|
key: hugo-${{ runner.os }}-${{ hashFiles('Makefile', 'config.toml') }}
|
|
restore-keys: |
|
|
hugo-${{ runner.os }}
|
|
hugo
|
|
|
|
- run: make all
|
|
|
|
- uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
|
id: artifact-upload-step
|
|
with:
|
|
name: site
|
|
path: |
|
|
public/
|
|
if-no-files-found: error
|
|
retention-days: 10
|
|
|
|
- name: Show artifact URL
|
|
run: |
|
|
echo 'Download URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }}'
|