Skip to content

Commit

Permalink
Fix 'Github Actions' configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed Jul 19, 2023
1 parent e3846ff commit 204400e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
pre-deploy:
name: 'Pre-deploy'
runs-on: ubuntu-latest
needs: test
# needs: test
if: github.event_name == 'push' && github.ref_type == 'tag'
steps:
- name: '_'
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
path: ${{ env.PACKAGES_DIRECTORY }}
- name: 'Configure NuGet'
run: |
dotnet nuget add source ${{ env.PACKAGES_DIRECTORY }} --name ${{ env.LOCAL_SOURCE_NAME }}
dotnet nuget add source $PWD/${{ env.PACKAGES_DIRECTORY }} --name ${{ env.LOCAL_SOURCE_NAME }}
cat > nuget.config <<EOF
<?xml version="1.0" encoding="utf-8"?>
<configuration>
Expand All @@ -135,7 +135,7 @@ jobs:
<package pattern="*"/>
</packageSource>
<packageSource key="${{ env.LOCAL_SOURCE_NAME }}">
<package pattern="${{ env.PROJECT_NAME }}.*"/>
<package pattern="${{ env.PROJECT_NAME }}"/>
</packageSource>
</packageSourceMapping>
</configuration>
Expand Down

0 comments on commit 204400e

Please sign in to comment.