Skip to content

Commit 7ca6b06

Browse files
Bump up versions to v0.4 and re-format YML files
1 parent 65986cc commit 7ca6b06

File tree

3 files changed

+30
-30
lines changed

3 files changed

+30
-30
lines changed

.github/workflows/build.yml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -4,42 +4,42 @@ on:
44
workflow_dispatch:
55
push:
66
paths-ignore:
7-
- '**/*'
8-
- '!.github/workflows/build.yml'
9-
- '!src/**/*.csproj'
10-
- '!src/**/*.cs'
7+
- "**/*"
8+
- "!.github/workflows/build.yml"
9+
- "!src/**/*.csproj"
10+
- "!src/**/*.cs"
1111
branches:
12-
- '*'
12+
- "*"
1313
pull_request:
1414
paths-ignore:
15-
- '**/*'
16-
- '!.github/workflows/build.yml'
17-
- '!src/**/*.csproj'
18-
- '!src/**/*.cs'
15+
- "**/*"
16+
- "!.github/workflows/build.yml"
17+
- "!src/**/*.csproj"
18+
- "!src/**/*.cs"
1919
branches:
20-
- '*'
20+
- "*"
2121

2222
env:
23-
VERSION: 0.3.1.${{ github.run_number }}
23+
VERSION: 0.4.1.${{ github.run_number }}
2424

2525
jobs:
2626
build:
2727
name: 👌 Verify build
2828
runs-on: ubuntu-latest
29-
steps:
30-
- name: 🛒 Checkout repository
31-
uses: actions/checkout@v5
32-
- uses: actions/setup-dotnet@v5
33-
with:
34-
dotnet-version: '8.0.x'
35-
- name: 🛠️ Build
36-
run: dotnet build -c Release CurlGenerator.sln -p:UseSourceLink=true -p:PackageVersion="${{ env.VERSION }}" -p:Version="${{ env.VERSION }}"
37-
- name: 🧪 Test
38-
run: dotnet test CurlGenerator.sln -c Release
39-
- name: 🗳️ Upload
40-
uses: actions/upload-artifact@v4
41-
with:
42-
name: Packages
43-
path: |
44-
**/*.nupkg
45-
README.md
29+
steps:
30+
- name: 🛒 Checkout repository
31+
uses: actions/checkout@v5
32+
- uses: actions/setup-dotnet@v5
33+
with:
34+
dotnet-version: "8.0.x"
35+
- name: 🛠️ Build
36+
run: dotnet build -c Release CurlGenerator.sln -p:UseSourceLink=true -p:PackageVersion="${{ env.VERSION }}" -p:Version="${{ env.VERSION }}"
37+
- name: 🧪 Test
38+
run: dotnet test CurlGenerator.sln -c Release
39+
- name: 🗳️ Upload
40+
uses: actions/upload-artifact@v4
41+
with:
42+
name: Packages
43+
path: |
44+
**/*.nupkg
45+
README.md

.github/workflows/release-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ jobs:
77
publish:
88
uses: ./.github/workflows/release-template.yml
99
with:
10-
version: 0.3.1.${{ github.run_number }}-preview
10+
version: 0.4.1.${{ github.run_number }}-preview
1111
secrets: inherit

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ jobs:
1010
publish:
1111
uses: ./.github/workflows/release-template.yml
1212
with:
13-
version: 0.3.${{ github.run_number }}
13+
version: 0.4.${{ github.run_number }}
1414
secrets: inherit

0 commit comments

Comments
 (0)