From 715c3939da4254ae1355954fdf8fa2e4b1f38131 Mon Sep 17 00:00:00 2001 From: Ludovic Cartier Date: Thu, 29 Aug 2024 15:25:40 +0200 Subject: [PATCH] build - add release --- .gitea/workflows/build.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 5768570..b4c2365 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -10,10 +10,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 -# - name: Build with MkDocs -# uses: moonpathbg/mkdocs_builder@latest # https://github.com/moonpathbg/mkdocs_builder -# #uses: romw314/mkdocs-action@v2 # https://github.com/marketplace/actions/mkdocs-build + uses: actions/checkout@v4 - name: Mkdocs build - uses: ./mkdocs-build-action/ # Uses an action in the root directory - id: build + uses: ./mkdocs-build-action/ # Uses an action in this directory + - name: Create release + uses: https://gitea.com/actions/release-action@main + with: + files: |- + .site/** +