Created
May 28, 2021 12:35
-
-
Save Stephanvs/4fbd58ae4006d2c99717155b5440f75b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NuKeeper Update NuGet Dependencies | |
on: | |
schedule: | |
- cron: 0 11 * * * | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_MULTILEVEL_LOOKUP: false | |
jobs: | |
update: | |
name: Update NuGet Packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: install nukeeper | |
run: dotnet tool install nukeeper --global | |
- name: update packages | |
run: nukeeper repo $GITHUB_SERVER_URL/$GITHUB_REPOSITORY ${{ secrets.NUKEEPER_TOKEN }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment