2024-08-09 18:41:15 +02:00
|
|
|
name: mkdocs build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "main"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-08-29 15:25:40 +02:00
|
|
|
uses: actions/checkout@v4
|
2024-08-29 12:03:10 +02:00
|
|
|
- name: Mkdocs build
|
2024-08-29 15:25:40 +02:00
|
|
|
uses: ./mkdocs-build-action/ # Uses an action in this directory
|
|
|
|
- name: Create release
|
2024-08-29 15:28:47 +02:00
|
|
|
uses: akkuman/gitea-release-action@v1
|
2024-08-29 15:25:40 +02:00
|
|
|
with:
|
|
|
|
files: |-
|
2024-08-29 16:11:15 +02:00
|
|
|
/workspace/ludal/wiki/.site/**
|
2024-08-29 15:50:45 +02:00
|
|
|
token: "${{ secrets.RELEASE_TOKEN }}"
|
|
|
|
|
2024-08-29 15:25:40 +02:00
|
|
|
|