Skip to content

update urls

update urls #1

Workflow file for this run

name: Release Package
# This action will start when a correctly formatted tag is pushed (e.g. 0.1.0)
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build .\uSync.Complete.HangfireJobs\uSync.Complete.HangfireJobs.csproj -c Release /p:Version=${{github.ref_name}}
- name: Pack
run: dotnet pack .\uSync.Complete.HangfireJobs\uSync.Complete.HangfireJobs.csproj -c Release /p:Version=${{github.ref_name}} --no-build --output .
- name: Push to NuGet
run: dotnet nuget push **\*.nupkg -k ${{secrets.NUGET_API_TOKEN}} -s https://api.nuget.org/v3/index.json