Skip to content

Commit ed10871

Browse files
committed
Merge branch 'main' of https://github.com/fs7744/VKProxy
2 parents 3a76b68 + 6cfb33e commit ed10871

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/nuget-prereleased.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: push
4343
env:
4444
nugetkey: ${{ secrets.nugetkey }}
45-
run: for x in $(find . -name "*.nupkg" -print); do dotnet nuget push -k $nugetkey -s https://api.nuget.org/v3/index.json $x; done
45+
run: for x in $(find . -name "*.nupkg" -print); do dotnet nuget push --skip-duplicate -k $nugetkey -s https://api.nuget.org/v3/index.json $x; done
4646
- name: Docker Setup Docker
4747
uses: docker/setup-docker-action@v4.3.0
4848
- name: build img

.github/workflows/nuget-released.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ jobs:
4242
- name: push
4343
env:
4444
nugetkey: ${{ secrets.nugetkey }}
45-
run: for x in $(find . -name "*.nupkg" -print); do dotnet nuget push -k $nugetkey -s https://api.nuget.org/v3/index.json $x; done
45+
run: for x in $(find . -name "*.nupkg" -print); do dotnet nuget push --skip-duplicate -k $nugetkey -s https://api.nuget.org/v3/index.json $x; done
4646
- name: Docker Setup Docker
47-
uses: docker/setup-docker-action@v4.3.0
47+
uses: docker/setup-docker-action@v4.5.0
4848
- name: build img
4949
run: cd src/VKProxy.Cli && docker build -t vkproxy/agent:$RELEASE_VERSION .
5050
- name: Docker Login

0 commit comments

Comments
 (0)