-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (47 loc) · 1.49 KB
/
release-nuget.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
name: (NuGet) NuGet Release
on:
workflow_run:
workflows: [ "Build" ]
types:
- completed
jobs:
nuget_release:
name: NuGet Release
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event != 'pull_request' }}
runs-on: ubuntu-latest
env:
# Nuget Setup
NUGET_VERSION: 'latest'
NUGET_OUTPUT: ${{ github.workspace }}/nuget/
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}
NUGET_FEED: https://api.nuget.org/v3/index.json
# Project Setup
PROJECT_NAME: 'Cogworks.AzureSearch'
steps:
- name: Checkout master
uses: actions/checkout@v2
with:
ref: master
fetch-depth: 0
- name: Get version
shell: bash
run: |
tag_check=$(git describe --exact-match `git rev-parse HEAD` | head -1)
echo "VERSION=$tag_check" >> $GITHUB_ENV
- name: Download a single artifact
uses: aochmann/actions-download-artifact@1.0.2
with:
name: build_${{ env.PROJECT_NAME }}.${{ env.VERSION }}
path: ${{ env.NUGET_OUTPUT }}
- name: Configure NuGet
uses: nuget/setup-nuget@v1
with:
nuget-version: ${{ env.NUGET_VERSION }}
- name: Push to NuGet Feed
shell: bash
working-directory: ${{ env.NUGET_OUTPUT }}
run: |
for nugetFile in ./*.nupkg
do
nuget push $nugetFile ${{ env.NUGET_TOKEN }} -Source ${{ env.NUGET_FEED }}
done