Bump the nuget group with 6 updates (#824) #1540
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: main | |
on: | |
workflow_dispatch: | |
inputs: | |
package-version: | |
type: string | |
description: Package version | |
required: false | |
deploy: | |
type: boolean | |
description: Deploy package | |
required: false | |
default: false | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- master | |
jobs: | |
main: | |
uses: Tyrrrz/.github/.github/workflows/nuget.yml@master | |
with: | |
# CI tests currently don't work due to YouTube's anti-bot measures | |
# https://github.com/Tyrrrz/YoutubeExplode/issues/794 | |
skip-tests: true | |
deploy: ${{ inputs.deploy || github.ref_type == 'tag' }} | |
package-version: ${{ inputs.package-version || (github.ref_type == 'tag' && github.ref_name) || format('0.0.0-ci-{0}', github.sha) }} | |
dotnet-version: 8.0.x | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }} | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} |