Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Oct 6, 2024
1 parent 9a78765 commit edb2904
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
VERSION: ${{ github.ref_name }}

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Check version
run: |
$TAG = "${{ github.ref_name }}"
$TAG=${{ github.ref_name }}
echo $TAG
- name: Set up .NET Core
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
VERSION: ${{ github.ref_name }}

runs-on: macos-latest

steps:
- uses: actions/checkout@v3

- name: Check version
run: |
$TAG = "${{ github.ref_name }}"
TAG=${{ github.ref_name }}
echo $TAG
- name: Set up .NET Core
Expand Down

0 comments on commit edb2904

Please sign in to comment.