Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

Replace string value with StringifyAttribute #1

Replace string value with StringifyAttribute

Replace string value with StringifyAttribute #1

Workflow file for this run

name: Release
on:
push:
tags:
- '*.*.*'
jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Pack
run: dotnet pack src/Strinum --configuration Release --output ${{ github.workspace }}/.nuget
- name: Push
run: dotnet nuget push ${{ github.workspace }}/.nuget/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate