IowaComputerGurus / netcore.utilities.spreadsheet

A utility to assist in creating Excel spreadsheets in .NET 6+ applications
MIT License
22 stars 3 forks source link

Update Build Process to Use New Versions #81

Closed mitchelsellers closed 1 month ago

mitchelsellers commented 2 months ago

The usage of GitTools needs to be updated to utilize the new versions, this involves multiple changes.

'GitVersion.yml` Changes

    prevent-increment:
      when-current-commit-tagged: true

Build File Changes

Update the Install GitVersion and Determine Version ones to be the following.

    - name: Install GitVersion
      uses: gittools/actions/gitversion/setup@v3.0.0
      with:
        versionSpec: '6.x'

    - name: Determine Version
      id: gitversion
      uses: gittools/actions/gitversion/execute@v3.0.0
      with:
        useConfigFile: true

[!NOTE]
This is a change from the prior usage of dotnet tool to do the install, and this should be done for ALL instances of usage of GitVersion