Skip to content

Commit

Permalink
testing github ref_name
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnie-fialok committed Jul 3, 2024
1 parent 227fad9 commit 2f6e70e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: GitHub Tag Name example
run: |
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
echo "Tag name from github.ref_name: ${{ github.ref_name }}"
- uses: actions/checkout@v3

- name: Get Version
Expand All @@ -39,7 +44,7 @@ jobs:

- name: Pack Blazor.Diagrams
working-directory: src/Blazor.Diagrams
run: 'dotnet pack -p:GeneratePackageOnBuild=false --configuration Release -p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.NUGET_DIR }}'
run: 'dotnet pack -p:GeneratePackageOnBuild=false --configuration Release -p:PackageVersion=${{ steps.version.outputs.version-without-v }}--output ${{ env.NUGET_DIR }}'

- name: Push
run: >-
Expand Down

0 comments on commit 2f6e70e

Please sign in to comment.