-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (59 loc) · 2.04 KB
/
release-myget.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
56
57
58
59
60
61
62
63
64
65
66
67
68
name: (NuGet) MyGet Release
on:
workflow_run:
workflows: [ "Build" ]
types:
- completed
jobs:
configuration:
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event != 'pull_request' }}
runs-on: ubuntu-latest
outputs:
MYGET_ENABLED: ${{ steps.config.outputs.MYGET_ENABLED }}
steps:
- name: Get MyGet status
id: config
run: |
echo "::set-output name=MYGET_ENABLED::${{ secrets.MYGET_ENABLED }}"
myget_release:
name: MyGet Release
needs: [ "configuration" ]
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event != 'pull_request' && needs.configuration.outputs.MYGET_ENABLED == 'true' }}
runs-on: ubuntu-latest
env:
# Nuget Setup
NUGET_VERSION: 'latest'
NUGET_OUTPUT: ${{ github.workspace }}/nuget/
# Project Setup
PROJECT_NAME: 'Cogworks.Umbraco.Essentials'
# MyGet Feed settings
MYGET_TOKEN: ${{ secrets.MYGET_TOKEN }}
MYGET_FEED: https://www.myget.org/F/cogworks-packages/auth/${{ secrets.MYGET_TOKEN }}/api/v3/index.json
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 MyGet Feed
shell: bash
working-directory: ${{ env.NUGET_OUTPUT }}
run: |
for nugetFile in ./*.nupkg
do
nuget push $nugetFile ${{ env.MYGET_TOKEN }} -Source ${{ env.MYGET_FEED }}
done