Skip to content

Commit

Permalink
added github action for automatically creating a nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
ModernRonin authored May 3, 2021
1 parent 91b375a commit a3f7fa8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/push-nuget.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# This is a basic workflow to help you get started with Actions

name: Push nuget

# Controls when the action will run.
on:
# Triggers the workflow on push to the master branch
push:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: windows-latest

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: run push-package
shell: pwsh
env:
NUGETAPIKEY: ${{ secrets.NUGETAPIKEY }}
run: .\push-package.ps1

0 comments on commit a3f7fa8

Please sign in to comment.