Build and Publish NuGet Package #3
This file contains 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: Build and Publish NuGet Package | |
on: | |
workflow_dispatch: | |
inputs: | |
project: | |
description: 'Select the project to build and pack' | |
required: true | |
default: 'Devon4Net.Infrastructure.Common' | |
options: | |
- 'Devon4Net.Infrastructure.Common' | |
- 'Devon4Net.Infrastructure.Cors' | |
- 'Devon4Net.Infrastructure.JWT' | |
version_type: | |
description: 'Select the version type' | |
required: true | |
default: 'patch' | |
options: | |
- 'major' | |
- 'minor' | |
- 'patch' | |
- 'preview' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '8.x' | |
- name: Get latest version from GitHub Packages | |
run: | | |
PACKAGE_NAME=$(basename "${{ github.event.inputs.project }}" .csproj) | |
echo "Latest version: $PACKAGE_NAME" | |
GITHUB_USERNAME="JosepFe" | |
GITHUB_TOKEN="${{ secrets.TOKEN_GITHUB }}" | |
LATEST_VERSION=$(curl -s -u $GITHUB_USERNAME:$GITHUB_TOKEN \ | |
-H "Accept: application/vnd.github+json" \ | |
"https://api.github.com/users/$GITHUB_USERNAME/packages/nuget/$PACKAGE_NAME/versions" | \ | |
jq -r '.[0].name') | |
if [ -z "$LATEST_VERSION" ]; then | |
echo "No version found for package $PACKAGE_NAME." | |
exit 1 | |
fi | |
echo "Latest version: $LATEST_VERSION" | |
echo "LATEST_VERSION=$LATEST_VERSION" >> $GITHUB_ENV | |
- name: Determine new version | |
id: version | |
run: | | |
VERSION_TYPE="${{ github.event.inputs.version_type }}" | |
LATEST_VERSION="${{ env.LATEST_VERSION }}" | |
# Extract major, minor, patch from latest version (assumes format major.minor.patch or major.minor.patch-preview) | |
MAJOR=$(echo $LATEST_VERSION | cut -d. -f1) | |
MINOR=$(echo $LATEST_VERSION | cut -d. -f2) | |
PATCH=$(echo $LATEST_VERSION | cut -d. -f3 | cut -d- -f1) # Removes preview suffix if present | |
# Increment version based on user input | |
if [ "$VERSION_TYPE" == "major" ]; then | |
NEW_VERSION="$((MAJOR + 1)).0.0" | |
elif [ "$VERSION_TYPE" == "minor" ]; then | |
NEW_VERSION="$MAJOR.$((MINOR + 1)).0" | |
elif [ "$VERSION_TYPE" == "patch" ]; then | |
NEW_VERSION="$MAJOR.$MINOR.$((PATCH + 1))" | |
elif [ "$VERSION_TYPE" == "preview" ]; then | |
PREVIEW_SUFFIX="-preview" | |
NEW_VERSION="$MAJOR.$MINOR.$((PATCH + 1))$PREVIEW_SUFFIX" | |
fi | |
echo "New version: $NEW_VERSION" | |
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV | |
- name: Restore dependencies | |
run: dotnet restore source/Modules/${{ github.event.inputs.project }}/${{ github.event.inputs.project }}.csproj | |
# - name: Build project | |
# run: dotnet build ${{ github.event.inputs.project }} --configuration Release --no-restore | |
# - name: Pack NuGet package | |
# run: dotnet pack ${{ github.event.inputs.project }} --configuration Release --no-build --output ./nuget-packages /p:PackageVersion=${{ env.NEW_VERSION }} |