Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev ci cd GitHub #7

Merged
merged 25 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 49 additions & 25 deletions .github/workflows/Build and pack nuget.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,60 @@

name: Build and pack nuget
on:
push:
branches:
- main
- dev-ci-cd-github
tags:
- '*' # 触发所有tag

env:
IS_PRODUCTION: true
# TAG: ${{ github.ref_name }} # 获取当前分支名或tag名
TAG: 1.0.0 # 获取当前分支名或tag名
NUGET_SOURCE: https://api.nuget.org/v3/index.json
NUGET_SOURCE_APIKEY: ${{ secrets.NUGET_TOKEN_YOYOBOOT }}



jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Cache NuGet packages
uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |

build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
# 注释掉缓存
- name: Cache NuGet packages
uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-build-nuget-${{ env.CACHE_NAME }}-
- name: Restore dependencies
run: dotnet restore
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Pack with powershell
shell: pwsh
working-directory: ./nupkg
run: ./pack.ps1
- name: Restore dependencies
run: dotnet restore
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Pack with powershell
shell: pwsh
working-directory: ./nupkg
run: ./pack.ps1
- name: Push Nuget Package
working-directory: ./nupkg
run: ./pack_push.ps1
shell: pwsh
- name: Push to GitHub Nuget Packages
working-directory: ./nupkg
run: ./pack_push.ps1
shell: pwsh
env:
NUGET_SOURCE: https://nuget.pkg.github.com/yoyoboot/index.json
NUGET_SOURCE_APIKEY: ${{ secrets.CICD_PACKAGE_GITHUB_TOKEN }}






10 changes: 6 additions & 4 deletions nupkg/pack.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@ $version = "1.0.0"
# 是否为发布
$isProduction = $env:IS_PRODUCTION

# 打印环境变量 然后将它的颜色设置为蓝色 然后暂停 以便查看
Write-Host "TAG: $env:TAG" -ForegroundColor Blue


Write-Host "IS_PRODUCTION: $isProduction" -ForegroundColor Blue

# 设置输入任意键继续的命令
Read-Host -Prompt "Press Enter to continue"



# 发布模式,从环境变量读取
if ($isProduction -eq $True) {
Write-Host "TAG: $env:TAG" -ForegroundColor Blue

$version = $env:TAG
Write-Host "version: $version"

}

# Paths
Expand Down
Loading