-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
769eb20
commit 6fc3854
Showing
14 changed files
with
77 additions
and
237 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,23 +25,21 @@ Fork, then clone the repo: | |
|
||
git clone [email protected]:your-username/ps-alias.git | ||
|
||
**All changes should be based from the `vNext` branch.** | ||
|
||
- All functions placed in the `src/devtoolbox/Export` folder will be available to the end-user. | ||
- All functions placed in the `src/devtoolbox/Private` folder will only be available to the module's scripts *not* the end-user. | ||
|
||
Please follow these steps to include a new function to the module: | ||
|
||
1. Create a new function in the `src/devltoolbox/Export` folder. | ||
1. Create a new function in the `src/devltoolbox/export` folder. | ||
1. Run the `/UpdateManifest.ps1` to update the manifest. | ||
1. If you have previously installed the module, run `/UninstallModule.ps1`. | ||
1. Run `/InstallModule.ps1` to install the module to your local module folder and test your new function. | ||
|
||
Push to your fork and [submit a pull request](https://github.com/builders-club/devtoolbox/compare/) against the `vNext` branch. | ||
Push to your fork and [submit a pull request](https://github.com/michaeljolley/devtoolbox/compare/). | ||
|
||
At this point you're waiting on us. We like to at least comment on pull requests | ||
within three days (and, typically, one day). We may suggest | ||
some changes or improvements or alternatives. | ||
within three days (and, typically, one day). We may suggest some changes or | ||
improvements or alternatives. | ||
|
||
Normally reviews & merging occur live on stream at [https://twitch.tv/baldbeardedbuilder](https://twitch.tv/baldbeardedbuilder). | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: CI/CD | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build module | ||
shell: pwsh | ||
run: | | ||
. "$(Build.Repository.LocalPath)/_build/build.ps1" | ||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Deploy to PowerShell Gallery | ||
env: | ||
PS_GALLERY_API_KEY: ${{ secrets.PS_GALLERY_API_KEY }} | ||
shell: pwsh | ||
run: | | ||
Publish-Module -Path "$(Build.Repository.LocalPath)/dist" -NuGetApiKey $(PS_GALLERY_API_KEY) |
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Function Invoke-GitHubRepository { | ||
[Alias('gh')] | ||
[Alias('github')] | ||
Param( | ||
# Browse the branch | ||
[Parameter()] | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.