Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/deploy-preview-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ env:
testResultFolderName: testResults

name: Deploy Preview Module
permissions:
contents: write
pull-requests: write
actions: write
checks: write
deployments: write

# This workflow is triggered on push to the develop branch and deploys the module to the PowerShell Gallery as a preview version.
jobs:
Expand Down Expand Up @@ -77,7 +71,7 @@ jobs:
shell: pwsh
run: ./build.ps1 -tasks publish
env:
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
GitHubToken: ${{ secrets.GITHUBTOKEN }}
GalleryApiToken: ${{ secrets.GalleryApiToken }}
ReleaseBranch: develop
MainGitBranch: develop
3 changes: 1 addition & 2 deletions build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,10 @@ BuildWorkflow:
#- Merge_CodeCoverage_Files

publish:
- Create_Release_Git_Tag
- Publish_Release_To_GitHub # Runs first, if token is expired it will fail early
# - Publish_GitHub_Wiki_Content
- publish_module_to_gallery
- Create_Changelog_Branch
# - Create_Changelog_Branch

####################################################
# PESTER Configuration #
Expand Down
2 changes: 1 addition & 1 deletion source/FabricTools.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RequiredModules = @(
# Assemblies that must be loaded prior to importing this module.
# RequiredAssemblies = @()

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# Script files (.ps1) that are run in the caller's environment prior to importing this module
# ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
Expand Down
Loading