From df99722e1a0e44c735413b51b6c5e048e502a577 Mon Sep 17 00:00:00 2001 From: Simon G <21110158+SimonG96@users.noreply.github.com> Date: Wed, 31 Aug 2022 15:41:33 +0200 Subject: [PATCH] - try fixing deploy --- .github/workflows/deploy.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 17d7cf7..7a36a37 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,8 +38,7 @@ jobs: dotnet nuget add source "https://nuget.pkg.github.com/SimonG96/index.json" --name "GithubPackageRegistry" --username SimonG96 --password $env:GH_PACKAGE_REGISTRY_KEY dotnet nuget push githubOut\LightweightIocContainer.*.nupkg -s "GithubPackageRegistry" - name: Upload the artifacts to release - uses: skx/github-action-publish-binaries@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: AButler/upload-release-assets@v2.0 with: - args: 'githubOut\LightweightIocContainer.*nupkg' + files: 'githubOut\LightweightIocContainer.*nupkg' + repo-token: ${{ secrets.GITHUB_TOKEN }}