📝Add a github demo #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish executables | |
on: | |
push: | |
tags: | |
- "v*" # Trigger on tags starting with 'v' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build and Publish CLI | |
permissions: | |
contents: write | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Extract Version from Tag | |
run: | | |
TAG_VERSION=$(echo "${{ github.ref }}" | sed 's/refs\/tags\/v//') | |
echo "PROJECT_VERSION=$TAG_VERSION" >> $GITHUB_ENV # Output the version to the environment | |
shell: bash | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" # Adjust if needed | |
- name: Publish win-x64 CLI | |
run: dotnet publish openapi-to-mcp/openapi-to-mcp.csproj -c Release -r win-x64 -p:Version=${{ env.PROJECT_VERSION }} --self-contained true -p:PublishSingleFile=true | |
shell: bash | |
- name: Rename win-x64 executable | |
run: mv ./openapi-to-mcp/bin/Release/net8.0/win-x64/publish/openapi-to-mcp.exe ./openapi-to-mcp/bin/Release/net8.0/win-x64/publish/openapi-to-mcp-${{ env.PROJECT_VERSION }}-win64.exe | |
shell: bash | |
- name: Publish osx-arm64 CLI | |
run: dotnet publish openapi-to-mcp/openapi-to-mcp.csproj -c Release -r osx-arm64 -p:Version=${{ env.PROJECT_VERSION }} --self-contained true -p:PublishSingleFile=true | |
shell: bash | |
- name: Rename osx-arm64 executable | |
run: mv ./openapi-to-mcp/bin/Release/net8.0/osx-arm64/publish/openapi-to-mcp ./openapi-to-mcp/bin/Release/net8.0/osx-arm64/publish/openapi-to-mcp-${{ env.PROJECT_VERSION }}-osxarm64 | |
shell: bash | |
- name: Pack CLI | |
run: dotnet pack openapi-to-mcp/openapi-to-mcp.csproj --configuration Release -p:Version=${{ env.PROJECT_VERSION }} -o ./nupkg | |
shell: bash | |
- name: Publish to NuGet | |
run: dotnet nuget push ./nupkg/openapi-to-mcp.${{ env.PROJECT_VERSION }}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} | |
shell: bash | |
- name: Create Release and Upload Assets | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
./openapi-to-mcp/bin/Release/net8.0/win-x64/publish/openapi-to-mcp-${{ env.PROJECT_VERSION }}-win64.exe | |
./openapi-to-mcp/bin/Release/net8.0/osx-arm64/publish/openapi-to-mcp-${{ env.PROJECT_VERSION }}-osxarm64 |