This commit is contained in:
@@ -8,20 +8,18 @@ env:
|
||||
PACKAGE_OWNER: ${{ github.repository_owner }}
|
||||
PACKAGE_NAME: AspNetCore.Identity.MongoDbCore.${{ env.PACKAGE_VERSION }}.nupkg
|
||||
PACKAGE_SOURCE: https://git.home.cuco.li/api/packages/${{ env.PACKAGE_OWNER }}/nuget/index.json
|
||||
PACKAGE_TOKEN: ${{ github.token }}
|
||||
PACKAGE_TOKEN: ${{ secrets.PACKAGE_PUSH_TOKEN }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 15
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
#- name: Set VERSION variable from tag
|
||||
# run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: '8.x.x'
|
||||
- name: Pack
|
||||
run: dotnet pack --configuration Release /p:Version=${{ env.PACKAGE_VERSION }} --output .
|
||||
- name: Push
|
||||
run: dotnet nuget push ${{ env.PACKAGE_NAME }} --source ${{ env.PACKAGE_SOURCE }} --api-key ${GITHUB_TOKEN}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ env.PACKAGE_TOKEN }}
|
||||
run: dotnet nuget push ${{ env.PACKAGE_NAME }} --source ${{ env.PACKAGE_SOURCE }} --api-key ${{ env.PACKAGE_TOKEN }}
|
||||
Reference in New Issue
Block a user