Skip to content

Commit bcdcf2a

Browse files
authored
Merge pull request #123 from PlagueHO/Issue-122
Automate Wiki Publish - Issue #122
2 parents e41b12e + a35c22e commit bcdcf2a

File tree

3 files changed

+44
-3
lines changed

3 files changed

+44
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## [Unreleased]
77

8+
### Changed
9+
10+
- ActiveDirectoryCSDsc
11+
- Automatically publish documentation to GitHub Wiki - Fixes [Issue #122](https://github.com/dsccommunity/ActiveDirectoryCSDsc/issues/122).
12+
813
## [5.0.0] - 2020-06-20
914

1015
### Changed

build.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,12 @@ BuildWorkflow:
4545

4646
test:
4747
- Pester_Tests_Stop_On_Fail
48-
- Pester_if_Code_Coverage_Under_Threshold
48+
- Pester_If_Code_Coverage_Under_Threshold
4949

5050
publish:
51-
- Publish_release_to_GitHub
52-
- publish_module_to_gallery
51+
- Publish_Release_to_GitHub
52+
- Publish_Module_to_gallery
53+
- Publish_GitHub_Wiki_Content
5354

5455
####################################################
5556
# PESTER Configuration #

source/WikiSource/Home.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Welcome to the ActiveDirectoryCSDsc wiki
2+
3+
<sup>*ActiveDirectoryCSDsc v#.#.#*</sup>
4+
5+
Here you will find all the information you need to make use of the ActiveDirectoryCSDsc
6+
DSC resources, including details of the resources that are available, current
7+
capabilities and known issues, and information to help plan a DSC based
8+
implementation of ActiveDirectoryCSDsc.
9+
10+
Please leave comments, feature requests, and bug reports in then
11+
[issues section](https://github.com/dsccommunity/ActiveDirectoryCSDsc/issues) for this module.
12+
13+
## Getting started
14+
15+
To get started download ActiveDirectoryCSDsc from the [PowerShell Gallery](http://www.powershellgallery.com/packages/ActiveDirectoryCSDsc/)
16+
and then unzip it to one of your PowerShell modules folders
17+
(such as $env:ProgramFiles\WindowsPowerShell\Modules).
18+
19+
To install from the PowerShell gallery using PowerShellGet (in PowerShell 5.0)
20+
run the following command:
21+
22+
```powershell
23+
Find-Module -Name ActiveDirectoryCSDsc -Repository PSGallery | Install-Module
24+
```
25+
26+
To confirm installation, run the below command and ensure you see the ActiveDirectoryCSDsc
27+
DSC resources available:
28+
29+
```powershell
30+
Get-DscResource -Module ActiveDirectoryCSDsc
31+
```
32+
33+
## Change Log
34+
35+
A full list of changes in each version can be found in the [change log](https://github.com/dsccommunity/ActiveDirectoryCSDsc/blob/master/CHANGELOG.md).

0 commit comments

Comments
 (0)