Template Bucket for Scoop Installer
Go to file
2024-10-10 18:32:06 +08:00
.github chore(ci): Update 'psmodulecache' to 'main' (#16) 2024-07-12 23:15:51 +08:00
.vscode (chore): Update json.schemas.fileMatch (#9) 2023-05-23 16:12:49 -07:00
bin (chore): Update CI and templates 2022-11-15 13:15:15 +08:00
bucket EasyTier v2.0.1 2024-10-10 18:32:06 +08:00
deprecated Add boilerplate 2021-12-27 23:52:24 +05:30
scripts Add boilerplate 2021-12-27 23:52:24 +05:30
.editorconfig (chore): Fix git conflicts with line endings 2022-07-01 10:29:16 +05:30
.gitattributes (chore): Fix git conflicts with line endings 2022-07-01 10:29:16 +05:30
.gitignore Add boilerplate 2021-12-27 23:52:24 +05:30
.markdownlint.json Add boilerplate 2021-12-27 23:52:24 +05:30
LICENSE Initial commit 2021-12-28 01:08:29 +08:00
README.md Document how to get bucket indexed (#15) 2023-09-28 13:20:29 +05:30
Scoop-Bucket.Tests.ps1 Add root testing file 2021-12-28 12:59:50 +05:30

Scoop Bucket Template

Template bucket for Scoop, the Windows command-line installer.

How do I use this template?

  1. Generate your own copy of this repository with the "Use this template" button.
  2. Allow all GitHub Actions:
    • Navigate to Settings - Actions - General - Actions permissions.
    • Select Allow all actions and reusable workflows.
    • Then Save.
  3. Allow writing to the repository from within GitHub Actions:
    • Navigate to Settings - Actions - General - Workflow permissions.
    • Select Read and write permissions.
    • Then Save.
  4. Document the bucket in README.md.
  5. Replace the placeholder repository string in bin/auto-pr.ps1.
  6. Create new manifests by copying bucket/app-name.json.template to bucket/<app-name>.json.
  7. Commit and push changes.
  8. If you'd like your bucket to be indexed on https://scoop.sh, add the topic scoop-bucket to your repository.

How do I install these manifests?

After manifests have been committed and pushed, run the following:

scoop bucket add <bucketname> https://github.com/<username>/<bucketname>
scoop install <bucketname>/<manifestname>

How do I contribute new manifests?

To make a new manifest contribution, please read the Contributing Guide and App Manifests wiki page.