check for a new version #722
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: check for a new version | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 7 * * *' | |
env: | |
NuGet_ApiKey: ${{ secrets.NUGET_API_KEY }} | |
jobs: | |
do-check: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Set github user | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
- name: Do Check | |
uses: cake-build/cake-action@1223b6fa067ad192159f43b50cd4f953679b0934 # v2.0.0 | |
with: | |
script-path: build.cake | |
target: CI |