Skip to content

Commit

Permalink
Fixes actions
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrichards committed Mar 29, 2021
1 parent a1be661 commit a1c3c4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build
name: Build

on:
push:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:
with:
fetch-depth: 0
- name: Build and Test
run: ./Build.ps1
run: ./build.ps1
shell: pwsh
- name: Push to MyGet
env:
NUGET_URL: https://www.myget.org/F/aisparser/api/v3/index.json
NUGET_API_KEY: ${{ secrets.MYGET_API_KEY }}
run: ./Push.ps1
run: ./release.ps1
shell: pwsh
- name: Push to NuGet
env:
NUGET_URL: https://api.nuget.org/v3/index.json
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: ./Push.ps1
run: ./release.ps1
shell: pwsh
- name: Artifacts
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit a1c3c4a

Please sign in to comment.