diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 1784bc1..789474d 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -7,10 +7,26 @@ on: branches: [ master ] jobs: + bump_version_tag: + name: Bump version and push tag + runs-on: ubuntu-latest + outputs: + new_tag: ${{ steps.create_tag.outputs.new_tag }} + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: '0' + - name: Execute action anothrNick/github-tag-action + id: create_tag + uses: anothrNick/github-tag-action@1.26.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + WITH_V: true + DEFAULT_BUMP: patch build: - + needs: bump_version_tag runs-on: ubuntu-latest - steps: - uses: actions/checkout@v2 - name: Setup .NET