Skip to content

Commit

Permalink
update source
Browse files Browse the repository at this point in the history
  • Loading branch information
drr00t committed Feb 13, 2023
1 parent e823841 commit eed4053
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release-pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,12 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
source-url: https://nuget.pkg.github.com/roadtoagility/index.json
env:
PKG_GITHUB_TOKEN: ${{ secrets.PKG_GITHUB_TOKEN }}
- name: Pack
run: dotnet pack --configuration Release /p:Version=${VERSION} --output .
- name: Push
run: dotnet nuget push *.${VERSION}.nupkg --api-key ${{secrets.PKG_GITHUB_TOKEN}} --skip-duplicate
run: dotnet nuget push *.${VERSION}.nupkg --api-key ${{secrets.PKG_GITHUB_TOKEN}} -s https://nuget.pkg.github.com/roadtoagility/index.json --skip-duplicate
create-github-release:
name: Create GitHub Release
runs-on: ubuntu-latest
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,12 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
source-url: https://nuget.pkg.github.com/roadtoagility/index.json
env:
PKG_GITHUB_TOKEN: ${{ secrets.PKG_GITHUB_TOKEN }}
- name: Pack
run: dotnet pack --configuration Release /p:Version=${VERSION} --output .
- name: Push to GitHub Nuget
run: dotnet nuget push *.${VERSION}.nupkg --api-key ${{secrets.PKG_GITHUB_TOKEN}} --skip-duplicate
run: dotnet nuget push *.${VERSION}.nupkg --api-key ${{secrets.PKG_GITHUB_TOKEN}} -s https://nuget.pkg.github.com/roadtoagility/index.json --skip-duplicate
create-github-release:
name: Create GitHub Release
runs-on: ubuntu-latest
Expand Down

0 comments on commit eed4053

Please sign in to comment.