Skip to content

Commit

Permalink
Testing GA script.
Browse files Browse the repository at this point in the history
  • Loading branch information
kekyo committed Jun 12, 2022
1 parent 46ce79d commit 59075af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ jobs:
#----------------------------------------------------------------------

#- name: Deploy NuGet package (devel/il2c-devel)
# if: startsWith( github.ref, 'refs/tags/' )
#- name: Deploy NuGet package (Release/devel/il2c-devel)
# if: (env.buildConfiguration == 'Release') && (startsWith(github.ref, 'refs/tags/'))
# run: |
# dotnet nuget push artifacts/IL2C.Interop.*.nupkg --source il2c-devel --api-key ${{secrets.GH_IL2C_NUGET_MYGET_KEY}}
# dotnet nuget push artifacts/IL2C.Core.*.nupkg --source il2c-devel --api-key ${{secrets.GH_IL2C_NUGET_MYGET_KEY}}
Expand All @@ -125,8 +125,8 @@ jobs:

#----------------------------------------------------------------------

#- name: Deploy NuGet package (master/nuget.org)
# if: (startsWith( github.ref, 'refs/tags/' )) && (endsWith(steps.extract_branch_name.outputs.branch_name, 'master'))
#- name: Deploy NuGet package (Release/master/nuget.org)
# if: (env.buildConfiguration == 'Release') && (startsWith(github.ref, 'refs/tags/')) && (endsWith(steps.extract_branch_name.outputs.branch_name, 'master'))
# run: |
# dotnet nuget push artifacts/IL2C.Interop.*.nupkg --source nuget.org --api-key ${{secrets.GH_IL2C_NUGET_NUGET_KEY}}
# dotnet nuget push artifacts/IL2C.Core.*.nupkg --source nuget.org --api-key ${{secrets.GH_IL2C_NUGET_NUGET_KEY}}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ jobs:
#----------------------------------------------------------------------

- name: Deploy NuGet package (devel/il2c-devel)
if: startsWith( github.ref, 'refs/tags/' )
- name: Deploy NuGet package (Release/devel/il2c-devel)
if: (env.buildConfiguration == 'Release') && (startsWith(github.ref, 'refs/tags/'))
run: |
dotnet nuget push artifacts\IL2C.Interop.*.nupkg --source il2c-devel --api-key ${{secrets.GH_IL2C_NUGET_MYGET_KEY}}
dotnet nuget push artifacts\IL2C.Core.*.nupkg --source il2c-devel --api-key ${{secrets.GH_IL2C_NUGET_MYGET_KEY}}
Expand All @@ -128,8 +128,8 @@ jobs:
#----------------------------------------------------------------------

#- name: Deploy NuGet package (master/nuget.org)
# if: (startsWith( github.ref, 'refs/tags/' )) && (endsWith(steps.extract_branch_name.outputs.branch_name, 'master'))
#- name: Deploy NuGet package (Release/master/nuget.org)
# if: (env.buildConfiguration == 'Release') && (startsWith(github.ref, 'refs/tags/')) && (endsWith(steps.extract_branch_name.outputs.branch_name, 'master'))
# run: |
# dotnet nuget push artifacts\IL2C.Interop.*.nupkg --source nuget.org --api-key ${{secrets.GH_IL2C_NUGET_NUGET_KEY}}
# dotnet nuget push artifacts\IL2C.Core.*.nupkg --source nuget.org --api-key ${{secrets.GH_IL2C_NUGET_NUGET_KEY}}
Expand Down

0 comments on commit 59075af

Please sign in to comment.