Skip to content

Sorting out the paths #17

Sorting out the paths

Sorting out the paths #17

Workflow file for this run

name: Build PowerShell Module
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
path: 'SpnLibraryRepo'
- name: Create PowerShell Manifest
uses: mod-posh/CreatePowerShellManifest@main # Replace with your repository details for the createpowershellmanifest action
with:
ModuleName: 'SpnLibrary'
Source: 'SpnLibraryRepo\SpnLibrary' # Use the custom path here
Imports: 'public'
Debug: 'true'
- name: Create PowerShell Module
uses: mod-posh/CreatePowerShellModule@main # Replace with your repository details for the createpowershellmodule action
with:
ModuleName: 'SpnLibrary'
Source: 'SpnLibraryRepo\SpnLibrary' # Use the custom path here
Imports: 'public'
Debug: 'true'
- name: Upload PowerShell Module
uses: actions/upload-artifact@v2
with:
name: your-module-output
path: ${{ github.workspace }}/output