https://github.com/pachoyan/scoop-bucket
https://github.com/pachoyan/scoop-bucket
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pachoyan/scoop-bucket
- Owner: pachoyan
- Created: 2024-04-12T18:10:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-12T23:38:06.000Z (about 1 year ago)
- Last Synced: 2024-08-13T07:05:03.146Z (8 months ago)
- Language: PowerShell
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - pachoyan/scoop-bucket - (PowerShell)
README
# scoop-bucket
Manage your scripts using scoop.
Add the scripts you would like to install on scoop to the `scripts` folder. For example:```pwsh
scripts/hello.ps1
```And then publish the changes.
Github Workflow will:
1. Detect changes on `scripts` folder.
2. Create an app manifest for you on bucket using the name of the script. For example `hello.ps1` will become `hello.json`.
3. Publish the changes.Add the bucket to scoop by running
```pwsh
scoop bucket add myscripts
```To install the new script as an app you can use Scoop by running:
```pwsh
scoop update
scoop install myscripts/hello
```