Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjanye committed Jul 5, 2024
1 parent 551f675 commit 654d425
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ jobs:
with:
dotnet-version: '8.x'

- name: Log
run: ls -al .
- name: Get version
id: get_version
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT

- name: Pack
run: dotnet pack NinjaNye.SearchExtensions.csproj -c Release --output nuget-packages
run: dotnet pack NinjaNye.SearchExtensions.csproj -c Release -p:PackageVersion=${{ steps.get_version.outputs.VERSION }} --output nuget-packages

- name: Log
run: ls -al ./nuget-packages
Expand All @@ -69,11 +70,15 @@ jobs:
with:
dotnet-version: '8.x'

- name: Get version
id: get_version
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT

- name: Log
run: ls -al .

- name: Pack
run: dotnet pack NinjaNye.SearchExtensions.Levenshtein.csproj -c Release --output nuget-packages
run: dotnet pack NinjaNye.SearchExtensions.Levenshtein.csproj -c Release -p:PackageVersion=${{ steps.get_version.outputs.VERSION }} --output nuget-packages

- name: Log
run: ls -al ./nuget-packages
Expand All @@ -97,7 +102,7 @@ jobs:

- name: Get version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT

- name: Pack
run: dotnet pack NinjaNye.SearchExtensions.Soundex.csproj -c Release -p:PackageVersion=${{ steps.get_version.outputs.VERSION }} --output nuget-packages
Expand Down

0 comments on commit 654d425

Please sign in to comment.