Skip to content

Commit 7b2d40b

Browse files
authored
Merge pull request #424 from PowerShellOrg:james_build
James_build
2 parents 657955f + 9225891 commit 7b2d40b

2 files changed

Lines changed: 15 additions & 16 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: Publish Module
22
on:
3-
push:
4-
branches:
5-
- master
3+
pull_request:
4+
branches: [ master ]
65
workflow_dispatch:
76
jobs:
87
build:
@@ -29,7 +28,7 @@ jobs:
2928
- name: Build and publish
3029
if: steps.check_if_versions_bumped.outputs.version_bumped == 'True'
3130
env:
32-
PSGALLERY_API_KEY: ${{ secrets.NUGET_KEY }}
31+
PSGALLERY_API_KEY: ${{ secrets.GALLERY_KEY }}
3332
shell: pwsh
3433
run: |
3534
./build.ps1 -Task Publish

Plaster/Plaster.psd1

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
@{
22
# Script module or binary module file associated with this manifest.
3-
RootModule = 'Plaster.psm1'
3+
RootModule = 'Plaster.psm1'
44

55
# ID used to uniquely identify this module
6-
GUID = 'cfce3c5e-402f-412a-a83a-7b7ee9832ff4'
6+
GUID = 'cfce3c5e-402f-412a-a83a-7b7ee9832ff4'
77

88
# Version number of this module.
9-
ModuleVersion = '1.1.4'
9+
ModuleVersion = '1.1.4'
1010

1111
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a
1212
# PSData hashtable with additional module metadata used by PowerShell.
13-
PrivateData = @{
13+
PrivateData = @{
1414
PSData = @{
1515
# Tags applied to this module. These help with module discovery in online galleries.
16-
Tags = @('Plaster', 'CodeGenerator', 'Scaffold')
16+
Tags = @('Plaster', 'CodeGenerator', 'Scaffold')
1717

1818
# A URL to the license for this module.
1919
LicenseUri = 'https://github.com/PowerShellOrg/Plaster/blob/master/LICENSE'
@@ -32,16 +32,16 @@
3232
}
3333

3434
# Author of this module
35-
Author = 'PowerShell.org'
35+
Author = 'PowerShell.org'
3636

3737
# Company or vendor of this module
38-
CompanyName = 'The DevOps Collective Inc.'
38+
CompanyName = 'The DevOps Collective Inc.'
3939

4040
# Copyright statement for this module
41-
Copyright = '(c) The DevOps Collective Inc.2016-2021. All rights reserved.'
41+
Copyright = '(c) The DevOps Collective Inc.2016-2021. All rights reserved.'
4242

4343
# Description of the functionality provided by this module
44-
Description = 'Plaster scaffolds PowerShell projects and files.'
44+
Description = 'Plaster scaffolds PowerShell projects and files.'
4545

4646
# Minimum version of the Windows PowerShell engine required by this module
4747
PowerShellVersion = '3.0'
@@ -54,13 +54,13 @@
5454
'New-PlasterManifest'
5555
'Get-PlasterTemplate',
5656
'Test-PlasterManifest'
57-
)
57+
)
5858

5959
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
60-
CmdletsToExport = @()
60+
CmdletsToExport = @()
6161

6262
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
63-
AliasesToExport = @()
63+
AliasesToExport = @()
6464

6565
# HelpInfo URI of this module
6666
# HelpInfoURI = ''

0 commit comments

Comments
 (0)