WinGet Manifests #481
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: WinGet Manifests | |
on: | |
push: | |
schedule: | |
- cron: "0 * * * *" | |
jobs: | |
run: | |
name: Parse WinGet Manifests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Rust | |
run: rustup install stable | |
- name: Build | |
run: | | |
git clone https://github.com/microsoft/winget-pkgs.git | |
cargo run --release | |
- name: Upload | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: . | |
author_name: GitHub Actions | |
author_email: [email protected] | |
message: "Update winget-pkgs" | |
push: true | |
committer_name: Actions Bot | |
committer_email: [email protected] |