-
Notifications
You must be signed in to change notification settings - Fork 16
49 lines (49 loc) · 1.98 KB
/
release.yml
File metadata and controls
49 lines (49 loc) · 1.98 KB
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
name: Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
name: Release
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Verify commit exists in origin/master
run: |
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
git branch --remote --contains | grep origin/master
- name: Set VERSION variable from tag
run: |
$version = ("${{github.ref_name}}").Remove(0, 1)
echo "VERSION=$version" >> $env:GITHUB_ENV
- name: Release
run: |
echo "${env:VERSION}"
dotnet build --configuration Release /p:Version=${{env.VERSION}}
- name: Test
run: dotnet test --configuration Release /p:Version=${{env.VERSION}} --no-build
- name: Pack
run: dotnet pack --configuration Release /p:Version=${{env.VERSION}} --output .
- name: Push
run: |
dotnet nuget push Geta.Optimizely.Sitemaps.${{env.VERSION}}.nupkg --source https://nuget.pkg.github.com/Geta/index.json --api-key ${{env.GITHUB_TOKEN}}
dotnet nuget push Geta.Optimizely.Sitemaps.Commerce.${{env.VERSION}}.nupkg --source https://nuget.pkg.github.com/Geta/index.json --api-key ${{env.GITHUB_TOKEN}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create GitHub Release with Auto-Generated Notes
run: |
gh release create ${{ github.ref_name }} --generate-notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Loop through all .nupkg files in the current directory and upload them to the release
run: |
Get-ChildItem -Filter *.nupkg -Recurse | ForEach-Object {
Write-Host "Uploading file: $($_.Name)"
gh release upload ${{ github.ref_name }} $_.FullName --clobber
}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}