From 2ab7ec5e1fb562126e40ff6ae7eea7eaadafe3d0 Mon Sep 17 00:00:00 2001 From: Shiqan Date: Tue, 4 Oct 2022 22:10:16 +0200 Subject: [PATCH] use github-tag-action 1.52.0 to disable pre-releases --- .github/workflows/publish.yml | 6 ++++-- mkdocs.yml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index dad2730b..1df4fa04 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,12 +32,13 @@ jobs: run: dotnet test ./src/FortniteReplayDecompressor.sln --no-build --configuration Release - name: Get next version id: versioning - uses: anothrNick/github-tag-action@1.46.0 + uses: anothrNick/github-tag-action@1.52.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DEFAULT_BUMP: patch WITH_V: false DRY_RUN: true + PRERELEASE: false RELEASE_BRANCHES: master VERBOSE: true - name: Create PackageVersion @@ -81,10 +82,11 @@ jobs: run: dotnet nuget push ./src/FortniteReplayReader/**/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_TOKEN }} --no-symbols 1 - name: Bump version and push tag - uses: anothrNick/github-tag-action@1.46.0 + uses: anothrNick/github-tag-action@1.52.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DEFAULT_BUMP: patch WITH_V: false + PRERELEASE: false RELEASE_BRANCHES: master \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 791c4e6c..4a9617f3 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,6 @@ site_name: FortniteReplayDecompressor -pages: +nav: - Home: index.md - Introduction: introduction.md - Overview: overview.md