Skip to content

Commit

Permalink
build: some change in the github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdihadeli committed Aug 21, 2024
1 parent ba00a1a commit 1f47823
Show file tree
Hide file tree
Showing 4 changed files with 655 additions and 417 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
# https://github.com/rhysd/actionlint

name: Build-Test

on:
push:
branches:
- "main"
pull_request:
branches:
- "main"

jobs:
build-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
# https://github.com/dotnet/Nerdbank.GitVersioning/blob/main/doc/cloudbuild.md#github-actions
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.x"

# https://github.com/joseftw/jos.enumeration/blob/main/.github/workflows/verify.yml
# https://github.com/dotnet/Nerdbank.GitVersioning
- uses: dotnet/[email protected]
id: nbgv

- name: Cache NuGet Packages
uses: actions/cache@v3
with:
key: vertical-template-nuget
path: ~/.nuget/packages

- name: Restore dependencies
run: dotnet restore Vertical.Slice.Template.sln

- name: Build Version ${{ steps.nbgv.outputs.nugetpackageversion }}
run: dotnet build Vertical.Slice.Template.sln -c Release --no-restore

- name: Test Version ${{ steps.nbgv.outputs.nugetpackageversion }}
run: |
dotnet test Vertical.Slice.Template.sln -c Release --no-restore --no-build
70 changes: 5 additions & 65 deletions .github/workflows/ci-cd.yml → .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,56 +1,22 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
# https://github.com/rhysd/actionlint

name: CICD
name: Publish-Nuget

on:
# push:
# tags:
# - "*"
push:
branches:
- "main"
pull_request:
branches:
- "main"

env:
FEED_SOURCE: https://api.nuget.org/v3/index.json
FEED_API_KEY: ${{ secrets.FEED_API_KEY }}
NuGetDirectory: ${{ github.workspace}}/nuget

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
# https://github.com/dotnet/Nerdbank.GitVersioning/blob/main/doc/cloudbuild.md#github-actions
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.x"

# https://github.com/joseftw/jos.enumeration/blob/main/.github/workflows/verify.yml
# https://github.com/dotnet/Nerdbank.GitVersioning
- uses: dotnet/[email protected]
id: nbgv

- name: Cache NuGet Packages
uses: actions/cache@v3
with:
key: vertical-template-nuget
path: ~/.nuget/packages

- name: Restore dependencies
run: dotnet restore Vertical.Slice.Template.sln

- name: Build Version ${{ steps.nbgv.outputs.nugetpackageversion }}
run: dotnet build Vertical.Slice.Template.sln -c Release --no-restore

- name: Test Version ${{ steps.nbgv.outputs.nugetpackageversion }}
run: |
dotnet test Vertical.Slice.Template.sln -c Release --no-restore --no-build

# https://www.meziantou.net/publishing-a-nuget-package-following-best-practices-using-github.htm
create_nuget:
Expand Down Expand Up @@ -98,40 +64,14 @@ jobs:
retention-days: 7
path: ${{ env.NuGetDirectory }}/*.nupkg

validate_nuget:
if: ${{ contains(fromJson('["main"]'), github.ref_name) || github.event_name == 'release' }}

runs-on: ubuntu-latest
needs: [create_nuget, build]
steps:
# Install the .NET SDK indicated in the global.json file
- name: Setup .NET
uses: actions/setup-dotnet@v3

# 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")

deploy:
if: ${{ contains(fromJson('["main"]'), github.ref_name) || github.event_name == 'release' }}

# Publish only when creating a GitHub Release
# https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository
# You can update this logic if you want to manage releases differently
runs-on: ubuntu-latest
needs: [validate_nuget, create_nuget]
needs: [create_nuget]
steps:
# Download the NuGet package created in the previous job
- uses: actions/download-artifact@v3
Expand Down
3 changes: 2 additions & 1 deletion Vertical.Slice.Template.sln
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{AEFE
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{ED6C6F59-8A39-4D7D-BB93-888AA486AFE9}"
ProjectSection(SolutionItems) = preProject
.github\workflows\ci-cd.yml = .github\workflows\ci-cd.yml
.github\workflows\build-test.yml = .github\workflows\build-test.yml
.github\workflows\publish.yml = .github\workflows\publish.yml
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vertical.Slice.Template", "src\Vertical.Slice.Template\Vertical.Slice.Template.csproj", "{31F7A4C7-66DD-4387-9981-4A64501018E7}"
Expand Down
Loading

0 comments on commit 1f47823

Please sign in to comment.