Skip to content

More fixes to release YAML. #9

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

Merged
merged 1 commit into from
May 21, 2025
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
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ vsspell_ignored_words_1c7003ec377c4bd9bb3c509d29770210 = File:.\IgnoredWords.dic

# match VS generated formatting for MSBuild project files
[*.*proj,*.props,*.targets]
indent_style = space
indent_size = 2
tab_width = 2

[*.yml,*.yaml]
indent_style = space
indent_size = 2
tab_width = 2

Expand Down
23 changes: 10 additions & 13 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ defaults:
# only comes into play on a PUSH of a tag to the repository
on:
push:
tags:
- 'v*'
tags:
- 'v*'

env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
Expand All @@ -16,21 +16,21 @@ env:

jobs:
build_target:
runs-on: windows-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
runs-on: windows-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0

- name: Build Source
run: .\Build-All.ps1 -FullInit

- name: Publish Artifacts
uses: actions/upload-artifact@v4
with:
name: Nuget Packages
name: nuget-packages
path: .\BuildOutput\Nuget

- name: Show asset names
Expand All @@ -46,6 +46,3 @@ jobs:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: true
prerelease: false


3 changes: 3 additions & 0 deletions src/Ubiquity.NET.Versioning.slnx
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<Solution>
<Folder Name="/Solution Items/">
<File Path="../.editorconfig" />
<File Path="../.gitattributes" />
<File Path="../.gitignore" />
<File Path="../Build-All.ps1" />
<File Path="../BuildVersion.xml" />
<File Path="../Directory.Build.props" />
Expand Down
Loading