Publish NuGet Package #7
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 NuGet Package | |
| on: | |
| push: | |
| tags: | |
| - "v*.*.*" | |
| workflow_dispatch: | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Setup .NET SDK | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: "9.x" | |
| - name: Get latest Tailwind CSS version | |
| id: get_tailwind_version | |
| run: | | |
| LATEST_TAILWIND_VERSION=$(curl -s https://api.github.com/repos/tailwindlabs/tailwindcss/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') | |
| echo "TAILWINDCSS_VERSION=$LATEST_TAILWIND_VERSION" >> $GITHUB_ENV | |
| - name: Extract version from tag | |
| id: extract_version | |
| run: | | |
| # Ensure all tags are available locally | |
| git fetch --tags --prune | |
| # Find the latest semver tag (v*.*.*) and set GITHUB_REF accordingly | |
| LATEST_TAG=$(git tag --list 'v*.*.*' --sort=-v:refname | head -n1) | |
| export GITHUB_REF="refs/tags/${LATEST_TAG}" | |
| VERSION_TAG=${GITHUB_REF#refs/tags/v} | |
| VERSION="$VERSION_TAG+v${TAILWINDCSS_VERSION//v/}" | |
| echo "VERSION=$VERSION" >> $GITHUB_ENV | |
| - name: Download TailwindCSS executables | |
| run: | | |
| chmod +x ./DotnetDevKR.TailwindCSS/runtime/install.sh | |
| ./DotnetDevKR.TailwindCSS/runtime/install.sh ${{ env.TAILWINDCSS_VERSION }} | |
| - name: Build | |
| run: dotnet build DotnetDevKR.TailwindCSS.sln --configuration Release | |
| - name: Restore dependencies | |
| run: dotnet restore DotnetDevKR.TailwindCSS.sln --source https://api.nuget.org/v3/index.json | |
| - name: Pack | |
| run: | | |
| dotnet pack ./DotnetDevKR.TailwindCSS/DotnetDevKR.TailwindCSS.csproj --configuration Release \ | |
| --no-build --no-restore \ | |
| --output ./artifacts \ | |
| /p:Version=${{ env.VERSION }} | |
| - name: Publish to NuGet | |
| run: | | |
| dotnet nuget push ./artifacts/*.nupkg \ | |
| --source https://api.nuget.org/v3/index.json \ | |
| --api-key ${{ secrets.NUGET_API_KEY }} | |
| env: | |
| NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} |