From 4b5b5b51364b0932ea9d6d05950e22c72bafece3 Mon Sep 17 00:00:00 2001 From: David Tchepak Date: Sat, 27 Apr 2024 19:26:07 +1000 Subject: [PATCH] Temp --- .github/workflows/release_build.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index bf95f5bb..02cfd5e4 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -2,8 +2,8 @@ name: Release build on: workflow_dispatch: push: - tags: - - 'v*' + # tags: + # - 'v*' env: CONFIGURATION: Release @@ -13,10 +13,12 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: | 6.0.x @@ -30,4 +32,12 @@ jobs: bundler-cache: true - name: Build package and docs - run: dotnet run --project 'build/build.fsproj' Package Documentation + run: dotnet run --project 'build/build.fsproj' -- -t Package Documentation + + - name: Check output + shell: bash + run: ls -alR * + + # - name: Upload artifacts + # uses: actions/upload-artifact@v4 + # with: