diff --git a/action.yml b/action.yml index 6bf45ec..abf6e79 100644 --- a/action.yml +++ b/action.yml @@ -5,8 +5,4 @@ runs: steps: - name: Check out repository code uses: actions/checkout@v3 - - run: dotnet nuget add source --name Gitea --username $PACKAGE_REPO_USER --password $PACKAGE_REPO_PASS $PACKAGE_REPO_URL_NUGET --store-password-in-clear-text - - run: dotnet restore - - run: dotnet test - - run: dotnet pack -o ./output - - run: dotnet nuget push --source Gitea ./output/* \ No newline at end of file + - run: docker build --build-arg="NUGET_URL=$PACKAGE_REPO_URL_NUGET" --build-arg="NUGET_USER=$PACKAGE_REPO_USER" --build-arg="NUGET_PASS=$PACKAGE_REPO_PASS" . \ No newline at end of file