Skip to content

Commit a4d7ec8

Browse files
committedOct 11, 2024
3.3.16.1
0 parents  commit a4d7ec8

13 files changed

+1659
-0
lines changed
 

‎.github/workflows/build.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: build
2+
3+
on: [push, pull_request]
4+
5+
env:
6+
NAME: AutoItX.Dotnet.Latest
7+
CONFIG: NuGet
8+
BIN_POSTFIX: .Bin
9+
RETENTION_DAYS: 1
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
17+
# Check out
18+
19+
- name: Check out ${{env.NAME}}
20+
uses: actions/checkout@v4.1.1
21+
22+
# Build
23+
24+
- name: Build ${{env.NAME}} ${{env.CONFIG}}
25+
run: dotnet build ${{env.NAME}}.sln --configuration ${{env.CONFIG}}
26+
27+
# Upload artifacts
28+
29+
- name: Publish ${{env.NAME}} ${{env.CONFIG}}
30+
uses: actions/upload-artifact@v4.3.0
31+
with:
32+
name: ${{env.NAME}}${{env.BIN_POSTFIX}}
33+
path: ${{env.NAME}}/bin/${{env.CONFIG}}/${{env.NAME}}.*.nupkg
34+
retention-days: ${{env.RETENTION_DAYS}}

0 commit comments

Comments
 (0)
Please sign in to comment.