Skip to content

Commit 33d2e6d

Browse files
committed
⬆️ Bump files with dotnet-file sync
# devlooped/oss - Only ignore App folder directly under the root devlooped/oss@02811fa - Fix dependabot group for tests devlooped/oss@49661db - Make sure build runs before pack devlooped/oss@ede013a - Switch to PackOnBuild=true and remove pack step devlooped/oss@6e7a3ab - Upload binlog artifact on debug runs devlooped/oss@a67ae78 - Set env:gh_token if present as secret devlooped/oss@97ebd18
1 parent e62b7c3 commit 33d2e6d

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

.github/dependabot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ updates:
2929
- "Microsoft.AspNetCore*"
3030
Tests:
3131
patterns:
32-
- "Microsoft.NET.Tests*"
32+
- "Microsoft.NET.Test*"
3333
- "xunit*"
3434
- "coverlet*"
3535
ThisAssembly:

.github/workflows/build.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ env:
1919
DOTNET_NOLOGO: true
2020
VersionPrefix: 42.42.${{ github.run_number }}
2121
VersionLabel: ${{ github.ref }}
22-
22+
PackOnBuild: true
23+
GeneratePackageOnBuild: true
24+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
25+
2326
defaults:
2427
run:
2528
shell: bash
@@ -67,8 +70,12 @@ jobs:
6770
- name: 🧪 test
6871
uses: ./.github/workflows/test
6972

70-
- name: 📦 pack
71-
run: dotnet pack -m:1 -bl:pack.binlog
73+
- name: 🐛 logs
74+
uses: actions/upload-artifact@v3
75+
if: runner.debug && always()
76+
with:
77+
name: logs
78+
path: '*.binlog'
7279

7380
# Only push CI package to sleet feed if building on ubuntu (fastest)
7481
- name: 🚀 sleet
@@ -79,13 +86,6 @@ jobs:
7986
dotnet tool install -g --version 4.0.18 sleet
8087
sleet push bin --config none -f --verbose -p "SLEET_FEED_CONTAINER=nuget" -p "SLEET_FEED_CONNECTIONSTRING=${{ secrets.SLEET_CONNECTION }}" -p "SLEET_FEED_TYPE=azure" || echo "No packages found"
8188
82-
- name: 🐛 logs
83-
uses: actions/upload-artifact@v3
84-
if: runner.debug && always()
85-
with:
86-
name: logs
87-
path: '*.binlog'
88-
8989
dotnet-format:
9090
runs-on: ubuntu-latest
9191
steps:

.github/workflows/publish.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ on:
1010
env:
1111
DOTNET_NOLOGO: true
1212
Configuration: Release
13-
13+
PackOnBuild: true
14+
GeneratePackageOnBuild: true
15+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
16+
1417
jobs:
1518
publish:
1619
runs-on: ubuntu-latest
@@ -27,15 +30,12 @@ jobs:
2730
- name: 🧪 test
2831
uses: ./.github/workflows/test
2932

30-
- name: 📦 pack
31-
run: dotnet pack -m:1 -p:version=${GITHUB_REF#refs/*/v} -bl:pack.binlog
32-
33-
- name: 🚀 nuget
34-
run: dotnet nuget push ./bin/**/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
35-
3633
- name: 🐛 logs
3734
uses: actions/upload-artifact@v3
3835
if: runner.debug && always()
3936
with:
4037
name: logs
41-
path: '*.binlog'
38+
path: '*.binlog'
39+
40+
- name: 🚀 nuget
41+
run: dotnet nuget push ./bin/**/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
bin
2-
app
32
obj
43
artifacts
54
pack
65
TestResults
76
results
87
BenchmarkDotNet.Artifacts
8+
/app
99
.vs
1010
.vscode
1111
.idea

.netconfig

+8-8
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
weak
3333
[file ".github/dependabot.yml"]
3434
url = https://github.com/devlooped/oss/blob/main/.github/dependabot.yml
35-
sha = 35ca3f3405452465058d89005f8a88a65847c377
36-
etag = f8080f8f04d87529e90d9a66751d304a7141196fb9734aa2d110784e52e66898
35+
sha = 49661dbf0720cde93eb5569be7523b5912351560
36+
etag = c147ea2f3431ca0338c315c4a45b56ee233c4d30f8d6ab698d0e1980a257fd6a
3737
weak
3838
[file ".github/workflows/dotnet-file.yml"]
3939
url = https://github.com/devlooped/oss/blob/main/.github/workflows/dotnet-file.yml
@@ -81,8 +81,8 @@
8181
[file ".github/workflows/build.yml"]
8282
url = https://github.com/devlooped/oss/blob/main/.github/workflows/build.yml
8383
weak
84-
sha = 13d67e2cf3f786c8189364fd29332aaa7dc575dc
85-
etag = c616df0877fba60002ccfc0397e9f731ddb22acbbb195a0598fedd4cac5f3135
84+
sha = 97ebd189e44da857e53e4d98af2727dd9dcb0740
85+
etag = f02775f5cdf8ba06238500e56bc25ca1e0aa329db4931f230c45bd1d7de1696d
8686
[file ".github/workflows/changelog.config"]
8787
url = https://github.com/devlooped/oss/blob/main/.github/workflows/changelog.config
8888
sha = 055a8b7c94b74ae139cce919d60b83976d2a9942
@@ -101,17 +101,17 @@
101101
[file ".github/workflows/publish.yml"]
102102
url = https://github.com/devlooped/oss/blob/main/.github/workflows/publish.yml
103103
weak
104-
sha = d3022567c9ef2bc9461511e53b8abe065afdf03b
105-
etag = 58601b5a71c805647ab26e84053acdfb8d174eaa93330487af8a5503753c5707
104+
sha = 97ebd189e44da857e53e4d98af2727dd9dcb0740
105+
etag = 04a0796e61476765c0a233806e85fb3f461d7cf099a14c91e6c5abcab938062f
106106
[file ".github/workflows/sponsor.yml"]
107107
url = https://github.com/devlooped/oss/blob/main/.github/workflows/sponsor.yml
108108
sha = 8990ebb36199046e0b8098bad9e46dcef739c56e
109109
etag = e1dc114d2e8b57d50649989d32dbf0c9080ec77da3738a4cc79e9256d6ca5d3e
110110
weak
111111
[file ".gitignore"]
112112
url = https://github.com/devlooped/oss/blob/main/.gitignore
113-
sha = ef852e7d2ec9a845dac272dfc479909c0bc6d9f3
114-
etag = a556d6108892aa8e7e63476f4fad3a898b3ec1deda94332dd4e89d2fb6b555ca
113+
sha = 02811fa23b0a102b9b33048335d41e515bf75737
114+
etag = a9c37ae312afac14b78436a7d018af4483d88736b5f780576f2c5a0b3f14998c
115115
weak
116116
[file "Directory.Build.rsp"]
117117
url = https://github.com/devlooped/oss/blob/main/Directory.Build.rsp

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,6 @@ The versioning scheme for packages is:
438438
[![Stephen Shaw](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/decriptor.png "Stephen Shaw")](https://github.com/decriptor)
439439
[![Torutek](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/torutek-gh.png "Torutek")](https://github.com/torutek-gh)
440440
[![DRIVE.NET, Inc.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/drivenet.png "DRIVE.NET, Inc.")](https://github.com/drivenet)
441-
[![Daniel Gnägi](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/dgnaegi.png "Daniel Gnägi")](https://github.com/dgnaegi)
442441
[![Ashley Medway](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/AshleyMedway.png "Ashley Medway")](https://github.com/AshleyMedway)
443442
[![Keith Pickford](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Keflon.png "Keith Pickford")](https://github.com/Keflon)
444443
[![Thomas Bolon](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/tbolon.png "Thomas Bolon")](https://github.com/tbolon)
@@ -466,9 +465,10 @@ The versioning scheme for packages is:
466465
[![Ken Bonny](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/KenBonny.png "Ken Bonny")](https://github.com/KenBonny)
467466
[![Simon Cropp](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/SimonCropp.png "Simon Cropp")](https://github.com/SimonCropp)
468467
[![agileworks-eu](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/agileworks-eu.png "agileworks-eu")](https://github.com/agileworks-eu)
469-
[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/sorahex.png "")](https://github.com/sorahex)
468+
[![sorahex](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/sorahex.png "sorahex")](https://github.com/sorahex)
470469
[![Zheyu Shen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/arsdragonfly.png "Zheyu Shen")](https://github.com/arsdragonfly)
471470
[![Vezel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/vezel-dev.png "Vezel")](https://github.com/vezel-dev)
471+
[![Georg Jung](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/georg-jung.png "Georg Jung")](https://github.com/georg-jung)
472472
473473

474474
<!-- sponsors.md -->

0 commit comments

Comments
 (0)