Skip to content

Commit

Permalink
update twitter api
Browse files Browse the repository at this point in the history
  • Loading branch information
equiman committed May 19, 2022
1 parent 9ff0782 commit 8665b17
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

env:
dotnet: 6.0.201
version: 1.9.1

jobs:
pack:
Expand All @@ -22,9 +23,9 @@ jobs:
- name: create file
run: dotnet pack ToolBox/ToolBox.csproj /p:NuspecFile=${{ github.workspace }}/ToolBox/ToolBox.nuspec -o ${{ github.workspace }}/Package/ -c release
- name: publish nuget on microsoft
run: dotnet nuget push "${{ github.workspace }}/Package/dein.ToolBox.${{ github.event.release.tag_name:1 }}.nupkg" -k ${{ secrets.NUGET_TOKEN }} -s "nuget" --skip-duplicate --no-symbols true
run: dotnet nuget push "${{ github.workspace }}/Package/dein.ToolBox.${{ env.version }}.nupkg" -k ${{ secrets.NUGET_TOKEN }} -s "nuget" --skip-duplicate --no-symbols true
- name: publish nuget on github
run: dotnet nuget push "${{ github.workspace }}/Package/dein.ToolBox.${{ github.event.release.tag_name:1 }}.nupkg" -s "github" --skip-duplicate --no-symbols true
run: dotnet nuget push "${{ github.workspace }}/Package/dein.ToolBox.${{ env.version }}.nupkg" -s "github" --skip-duplicate --no-symbols true

tweet:
needs: pack
Expand Down

0 comments on commit 8665b17

Please sign in to comment.