Skip to content

Commit

Permalink
FIX CI
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-domenichini committed Jan 11, 2024
1 parent 4add87e commit ce7083b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/dotnet-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,11 @@ jobs:
runs-on: windows-latest

steps:
- name: Extract Tag Name
id: tag_name
run: echo "::set-output name=tag_name::$(echo ${GITHUB_REF#refs/tags/})"
- name: Print Tag Name
run: echo "Creating release for Tag ${{ steps.tag_name.outputs.tag_name }}"
run: echo "Creating release for Tag $(basename ${{ github.ref }}"
- name: Set Version variable
id: version
run: echo "::set-output name=PRODUCT_VERSION::${{ steps.tag_name.outputs.tag_name }}"
run: echo "::set-output name=PRODUCT_VERSION::$(basename ${{ github.ref }}"
- uses: actions/checkout@v3
- name: Setup .NET6
uses: actions/setup-dotnet@v2
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/dotnet-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,11 @@ jobs:
runs-on: windows-latest

steps:
- name: Extract Tag Name
id: tag_name
run: echo "::set-output name=tag_name::$(echo ${GITHUB_REF#refs/tags/})"
- name: Print Tag Name
run: echo "Creating release for Tag ${{ steps.tag_name.outputs.tag_name }}"
run: echo "Creating release for Tag $(basename ${{ github.ref }}"
- name: Set Version variable
id: version
run: echo "::set-output name=PRODUCT_VERSION::${{ steps.tag_name.outputs.tag_name }}"
run: echo "::set-output name=PRODUCT_VERSION::$(basename ${{ github.ref }}"
- uses: actions/checkout@v3
- name: Setup .NET6
uses: actions/setup-dotnet@v2
Expand Down

0 comments on commit ce7083b

Please sign in to comment.