Skip to content

Commit

Permalink
package publish attempt 1
Browse files Browse the repository at this point in the history
  • Loading branch information
daveboster committed Nov 24, 2023
1 parent c2560cc commit aa5d7c7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/tasks-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,16 @@ jobs:
with:
name: ${{ needs.build.outputs.zip_package_artifact }}
path: './packaging'


- 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"
- 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"
# tests_e2e:
# uses: ./.github/workflows/tests-e2e-playwright.yml

0 comments on commit aa5d7c7

Please sign in to comment.