Skip to content

Commit

Permalink
push attempt 2 after fix syntax issue
Browse files Browse the repository at this point in the history
  • Loading branch information
daveboster committed Nov 24, 2023
1 parent aa5d7c7 commit 944d52c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tasks-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ jobs:
- name: Prep packages
shell: pwsh
run: |
dotnet nuget add source --username $env:GITHUB_REPOSITORY_OWNER --password ${{ secrets.PACKAGE_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/$($env:GITHUB_REPOSITORY_OWNER)/index.json"
dotnet nuget add source --username ${{ github.repository_owner }} --password ${{ secrets.PACKAGE_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
- name: Push package to GitHub packages
shell: pwsh
run: |
run: dotnet nuget push ${{ needs.build.outputs.zip_package_artifact }} --api-key ${{ secrets.PACKAGE_TOKEN }} --source "github"
dotnet nuget push ${{ needs.build.outputs.zip_package_artifact }} --api-key ${{ secrets.PACKAGE_TOKEN }} --source "github"
# tests_e2e:
# uses: ./.github/workflows/tests-e2e-playwright.yml

0 comments on commit 944d52c

Please sign in to comment.