Skip to content

Commit

Permalink
Separated triggers (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Agazoth committed Nov 5, 2023
1 parent d637d08 commit aeafc9f
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 36 deletions.
40 changes: 4 additions & 36 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# This is a basic workflow to help you get started with Actions

name: CI
name: Merge

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
pull_request:
branches: [main]
paths-ignore:
- ".github/**"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -53,44 +55,10 @@ jobs:
run: |
$env:psakeDeploy = $true
# The build fails in GitHub Actions
Invoke-psake .\PSParquet.psake.ps1 Test -Verbose
Invoke-psake .\PSParquet.psake.ps1 Test -Verbose -Erroraction Stop
- name: Upload Build Artifact
uses: actions/[email protected]
with:
name: PSParquet
path: ./output/

release:
needs: build
runs-on: ubuntu-latest
steps:
# Check out the main branch
- uses: actions/checkout@main

- name: Setup .NET 7.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x

- name: Download build artifact
uses: actions/download-artifact@v2
with:
name: PSParquet
path: Artifact/

- name: Install the module
run: |
Write-Host $Env:GITHUB_REF
$ModuleName = (Get-ChildItem -Path ./Artifact/).Name
echo "MODULE_NAME=$ModuleName" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
Write-Host "Path: $(pwd)"
Write-Host "ModuleName: $ModuleName"
Import-Module ./Artifact/$ModuleName -Force -Verbose -Debug
Get-Command -Module $ModuleName
shell: pwsh

- name: Publish to Powershell Gallery
run: |
Publish-Module -Name ./Artifact/$Env:MODULE_NAME -NuGetApiKey ${{ secrets.PSGALLERYKEY }}
shell: pwsh
98 changes: 98 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
# This is a basic workflow to help you get started with Actions

name: Release

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
paths-ignore:
- ".github/**"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Setup .NET 7.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x

- name: Set required Powershell modules
id: psmodulecache
uses: potatoqualitee/psmodulecache@v1
with:
modules-to-cache: Pester, PSSCriptAnalyzer, InvokeBuild, platyPS, psake

- name: Setup PowerShell module cache
id: cacher
uses: actions/cache@v2
with:
path: ${{ steps.psmodulecache.outputs.modulepath }}
key: ${{ steps.psmodulecache.outputs.keygen }}

- name: Install required PowerShell modules
if: steps.cacher.outputs.cache-hit != 'true'
shell: pwsh
run: |
Set-PSRepository PSGallery -InstallationPolicy Trusted
Install-Module ${{ steps.psmodulecache.outputs.needed }} -ErrorAction Stop
- name: Invoke build
shell: pwsh
run: |
$env:psakeDeploy = $true
# The build fails in GitHub Actions
Invoke-psake .\PSParquet.psake.ps1 Test -Verbose -ErrorAction Stop
- name: Upload Build Artifact
uses: actions/[email protected]
with:
name: PSParquet
path: ./output/

release:
needs: build
runs-on: ubuntu-latest
steps:
# Check out the main branch
- uses: actions/checkout@main

- name: Setup .NET 7.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x

- name: Download build artifact
uses: actions/download-artifact@v2
with:
name: PSParquet
path: Artifact/

- name: Install the module
run: |
Write-Host $Env:GITHUB_REF
$ModuleName = (Get-ChildItem -Path ./Artifact/).Name
echo "MODULE_NAME=$ModuleName" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
Write-Host "Path: $(pwd)"
Write-Host "ModuleName: $ModuleName"
Import-Module ./Artifact/$ModuleName -Force -Verbose -Debug
Get-Command -Module $ModuleName
shell: pwsh

- name: Publish to Powershell Gallery
run: |
Publish-Module -Name ./Artifact/$Env:MODULE_NAME -NuGetApiKey ${{ secrets.PSGALLERYKEY }}
shell: pwsh

0 comments on commit aeafc9f

Please sign in to comment.