-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (33 loc) · 1.2 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
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
- 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}} --no-build --output .
- name: Push
run: |
dotnet nuget push Geta.Optimizely.HotspotsEditor.${{env.VERSION}}.nupkg --source https://nuget.pkg.github.com/Geta/index.json --api-key ${{env.GITHUB_TOKEN}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}