mirror of
https://github.com/laoxong/ScoopBucket
synced 2024-11-22 18:35:15 +01:00
Template Bucket for Scoop Installer
.github | ||
.vscode | ||
bin | ||
bucket | ||
deprecated | ||
scripts | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
.markdownlint.json | ||
LICENSE | ||
README.md | ||
Scoop-Bucket.Tests.ps1 |
Scoop Bucket Template
Template bucket for Scoop, the Windows command-line installer.
How do I use this template?
- Generate your own copy of this repository with the "Use this template" button.
- Allow all GitHub Actions:
- Navigate to
Settings
-Actions
-General
-Actions permissions
. - Select
Allow all actions and reusable workflows
. - Then
Save
.
- Navigate to
- Allow writing to the repository from within GitHub Actions:
- Navigate to
Settings
-Actions
-General
-Workflow permissions
. - Select
Read and write permissions
. - Then
Save
.
- Navigate to
- Document the bucket in
README.md
. - Replace the placeholder repository string in
bin/auto-pr.ps1
. - Create new manifests by copying
bucket/app-name.json.template
tobucket/<app-name>.json
. - Commit and push changes.
- If you'd like your bucket to be indexed on
https://scoop.sh
, add the topicscoop-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.