version bumb 064 #28
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: WebApp update Nuget packages list | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
paths: | |
- '**.csproj' | |
workflow_dispatch: | |
jobs: | |
run: | |
name: Update Nuget packages list | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- name: Npm generate package list | |
working-directory: ./starsky-tools/build-tools | |
run: npm run nuget-package-list | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: DocsUpdateBot | |
author_email: [email protected] | |
message: "[NugetPackagesListUpdate] Auto commited nugetPackages list" | |
add: "starsky/nuget-packages-list.json" | |
github_token: ${{ secrets.GITHUB_TOKEN }} |