1

Update action.yml

This commit is contained in:
Woltvint Němeček 2023-12-20 01:55:41 +00:00
parent f66c59d205
commit cf39b00a59

View File

@ -5,8 +5,4 @@ runs:
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v3 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: docker build --build-arg="NUGET_URL=$PACKAGE_REPO_URL_NUGET" --build-arg="NUGET_USER=$PACKAGE_REPO_USER" --build-arg="NUGET_PASS=$PACKAGE_REPO_PASS" .
- run: dotnet restore
- run: dotnet test
- run: dotnet pack -o ./output
- run: dotnet nuget push --source Gitea ./output/*