Release version to MyGet #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Release version to MyGet | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: nuget/[email protected] | |
with: | |
nuget-api-key: ${{ secrets.MYGETAPI }} | |
nuget-version: 'latest' | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' | |
- name: setup-msbuild | |
uses: microsoft/setup-msbuild@v1 | |
env: | |
working-directory: MetaMomentum/ | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' | |
# - name: Nuget Add Umbraco Prerelease Source | |
# run: dotnet nuget add source https://www.myget.org/F/umbracoprereleases/api/v3/index.json --name "Umbraco Prereleases" | |
- name: Run Nuget restore | |
run: nuget restore metamomentum.sln | |
- name: Copy lucene analyser | |
run: | | |
$src = "C:\Users\runneradmin\.nuget\packages\lucene.net\4.8.0-beta00014\analyzers\dotnet\cs" | |
$dest = "C:\Users\runneradmin\.nuget\packages\lucene.net\3.0.3\analyzers\dotnet\cs" | |
if (!(Test-Path -Path $dest)) { | |
New-Item -ItemType directory -Path $dest | |
} | |
Copy-Item -Path $src\*.dll -Destination $dest | |
- name: build | |
run: msbuild | |
working-directory: MetaMomentum.Core/ | |
- name: build | |
run: msbuild | |
working-directory: MetaMomentum/ | |
#- name: Nuget Add Source | |
# run: nuget sources Add -Name "nuget" -Source https://api.nuget.org/v3/index.json | |
# - name: Nuget SetAPIKey | |
# run: nuget setapikey ${{ secrets.NUGETAPI }} #-Source "nuget" | |
- name: Publish MetaMomentum to MyGet | |
working-directory: MetaMomentum/ | |
run: dotnet nuget push **\*.nupkg --api-key ${{ secrets.MYGETAPI }} --source https://www.myget.org/F/digital-momentum/api/v2/package | |
- name: Publish MetaMomentum.core to MyGet | |
working-directory: MetaMomentum.Core/ | |
run: dotnet nuget push **\*.nupkg --api-key ${{ secrets.MYGETAPI }} --source https://www.myget.org/F/digital-momentum/api/v2/package | |