diff --git a/.github/workflows/release-linux.yml b/.github/workflows/release-linux.yml index 9985494..b8cef68 100644 --- a/.github/workflows/release-linux.yml +++ b/.github/workflows/release-linux.yml @@ -14,7 +14,7 @@ jobs: DOTNET_NOLOGO: true DOTNET_CLI_TELEMETRY_OPTOUT: 1 VERSION: ${{ github.ref_name }} - + runs-on: ubuntu-latest steps: @@ -22,7 +22,7 @@ jobs: - name: Check version run: | - $TAG = "${{ github.ref_name }}" + $TAG=${{ github.ref_name }} echo $TAG - name: Set up .NET Core diff --git a/.github/workflows/release-osx.yml b/.github/workflows/release-osx.yml index 880607b..4215299 100644 --- a/.github/workflows/release-osx.yml +++ b/.github/workflows/release-osx.yml @@ -14,7 +14,7 @@ jobs: DOTNET_NOLOGO: true DOTNET_CLI_TELEMETRY_OPTOUT: 1 VERSION: ${{ github.ref_name }} - + runs-on: macos-latest steps: @@ -22,7 +22,7 @@ jobs: - name: Check version run: | - $TAG = "${{ github.ref_name }}" + TAG=${{ github.ref_name }} echo $TAG - name: Set up .NET Core