Refactor and document Persian date handling #53
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: CD | |
on: | |
workflow_dispatch: # Allow running the workflow manually from the GitHub UI | |
push: | |
branches: | |
- 'master' | |
tags: | |
- 'v*.*.*' # Run the workflow on tags that match the pattern v*.*.* | |
pull_request: # Run the workflow on pull requests | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: true | |
NuGetDirectory: ${{ github.workspace}}/nuget | |
defaults: | |
run: | |
shell: pwsh | |
jobs: | |
build: | |
# Specify the type of runner to use. In this case, the latest macOS environment. | |
runs-on: macos-latest | |
steps: | |
# Step 1: Check out the repository to the runner. | |
- uses: actions/checkout@v4 | |
# Step 2: Set up the .NET environment using the setup-dotnet action. | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
# Step 3: Restore the project's dependencies specified in the project file. | |
- name: Restore dependencies | |
run: dotnet restore | |
# Step 4: Build the project in Release configuration. | |
- name: Build | |
run: dotnet build --configuration Release | |
create_nuget: | |
needs: [ build ] | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer | |
# Install the .NET SDK indicated in the global.json file | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
# Create the NuGet package in the folder from the environment variable NuGetDirectory | |
- run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }} | |
# Publish the NuGet package as an artifact, so they can be used in the following jobs | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nuget | |
if-no-files-found: error | |
retention-days: 7 | |
path: ${{ env.NuGetDirectory }}/*.nupkg | |
validate_nuget: | |
runs-on: macos-latest | |
needs: [ create_nuget ] | |
steps: | |
# Install the .NET SDK indicated in the global.json file | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
# Download the NuGet package created in the previous job | |
- uses: actions/download-artifact@v3 | |
with: | |
name: nuget | |
path: ${{ env.NuGetDirectory }} | |
- name: Install nuget validator | |
run: dotnet tool update Meziantou.Framework.NuGetPackageValidation.Tool --global | |
# Validate metadata and content of the NuGet package | |
# https://www.nuget.org/packages/Meziantou.Framework.NuGetPackageValidation.Tool#readme-body-tab | |
# If some rules are not applicable, you can disable them | |
# using the --excluded-rules or --excluded-rule-ids option | |
- name: Validate package | |
run: meziantou.validate-nuget-package (Get-ChildItem "${{ env.NuGetDirectory }}/*.nupkg") | |
run_test: | |
runs-on: macos-latest | |
needs: [ build ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
- name: Run tests | |
run: dotnet test --configuration Release | |
deploy: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
runs-on: macos-latest | |
needs: [ validate_nuget, run_test ] | |
steps: | |
# Download the NuGet package created in the previous job | |
- uses: actions/download-artifact@v3 | |
with: | |
name: nuget | |
path: ${{ env.NuGetDirectory }} | |
# Install the .NET SDK indicated in the global.json file | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
# Authenticate with GitHub Packages using the GITHUB_TOKEN secret | |
- name: Authenticate with GitHub Packages | |
run: dotnet nuget add source https://nuget.pkg.github.com/hootanht/index.json -n github -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text | |
# Publish all NuGet packages to GitHub Packages | |
- name: Publish NuGet package to GitHub Packages | |
run: | | |
foreach($file in (Get-ChildItem "${{ env.NuGetDirectory }}" -Recurse -Include *.nupkg)) { | |
dotnet nuget push $file --api-key "${{ secrets.GITHUB_TOKEN }}" --source https://nuget.pkg.github.com/hootanht/index.json --skip-duplicate | |
} | |
# Publish all NuGet packages to NuGet.org | |
# Use --skip-duplicate to prevent errors if a package with the same version already exists. | |
# If you retry a failed workflow, already published packages will be skipped without error. | |
- name: Publish NuGet package to NuGet.org | |
run: | | |
foreach($file in (Get-ChildItem "${{ env.NuGetDirectory }}" -Recurse -Include *.nupkg)) { | |
dotnet nuget push $file --api-key "${{ secrets.NUGET_APIKEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate | |
} | |
create_github_release: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
runs-on: macos-latest | |
needs: [ deploy ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
# Create the GitHub release | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
body: | | |
## Changes in this Release | |
${{ steps.create-release-notes.outputs.release-notes }} | |
draft: false | |
prerelease: false |