Skip to content

Working on CI/CD process #15

Working on CI/CD process

Working on CI/CD process #15

Workflow file for this run

name: CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
# test:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# - name: Install prerequisites
# shell: pwsh
# run: |
# ./_build/bootstrap.ps1
# - name: Run Pester tests
# shell: pwsh
# run: |
# Invoke-Pester -Path "./src"
deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
# needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build & publish module
shell: pwsh
run: ./_build/build.ps1
- name: Deploy to PS Gallery
uses: natescherer/publish-powershell-action@v1
with:
token: ${{ secrets.PS_GALLERY_API_KEY }}
target: gallery
path: dist