Skip to content

fix CI

fix CI #11

Workflow file for this run

name: Publish
on:
push:
tags:
- "*"
jobs:
push:
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v2
- name: Pack
run: dotnet pack -c Release src/Artemis.GameFinder/Artemis.GameFinder.csproj
- name: Upload
run: dotnet nuget push src/Artemis.GameFinder/bin/Release/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate