-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (43 loc) · 1.41 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: release
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build --verbosity normal -c Release
- name: Verify manifest version matches tag
shell: pwsh
run: if ((Test-ModuleManifest -Path ./DollarEnv.Module/DollarEnv.Module.psd1).Version -ne "$env:MODULE_VERSION") { exit 1 }
env:
MODULE_VERSION: ${{ github.ref_name }}
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref_name }}
draft: false
prerelease: false
- name: Publish PowerShell Module
uses: natescherer/publish-powershell-action@v1.1.1
with:
token: ${{ secrets.PS_GALLERY_API_KEY }}
target: gallery
path: ./DollarEnv.Module/