This repository was archived by the owner on May 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (70 loc) · 1.67 KB
/
build-artifacts.yml
File metadata and controls
76 lines (70 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Build Artifacts
on:
push:
branches:
- main
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Build Artifacts
run: dotnet pack ./src/NG.Mediator/NG.Mediator.csproj -c Release -o "./artifacts"
- name: Artifacts
uses: actions/upload-artifact@v4
with:
name: 'artifacts.zip'
path: ./artifacts/*
#on:
# push:
# tags:
# - '*.*.*'
#jobs:
# build:
# strategy:
# matrix:
# os: [ubuntu-latest]
# fail-fast: false
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: Setup dotnet 6.0
# uses: actions/setup-dotnet@v4
# with:
# dotnet-version: '6.0.x'
# - name: Setup dotnet 8.0
# uses: actions/setup-dotnet@v4
# with:
# dotnet-version: '8.0.100'
# - name: Build and Test
# run: ./Build.ps1
# shell: pwsh
# - name: Push to MyGet
# env:
# NUGET_URL: https://www.myget.org/F/NG.Mediator-ci/api/v3/index.json
# NUGET_API_KEY: ${{ secrets.MYGET_NG.Mediator_CI_API_KEY }}
# run: ./Push.ps1
# shell: pwsh
# - name: Push to NuGet
# env:
# NUGET_URL: https://api.nuget.org/v3/index.json
# NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
# run: ./Push.ps1
# shell: pwsh
# - name: Artifacts
# uses: actions/upload-artifact@v4
# with:
# name: artifacts
# path: artifacts/**/*