-
Notifications
You must be signed in to change notification settings - Fork 6
41 lines (32 loc) · 970 Bytes
/
build-develop2.yml
File metadata and controls
41 lines (32 loc) · 970 Bytes
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
name: Build Plugin Dev Release
on: push
env:
BUILD_CONFIGURATION: Release
jobs:
build:
runs-on: windows-latest
name: "Build plugin - develop release"
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Get latest release version
uses: ./.github/actions/version
with:
repository: ${{ github.repository }}
ref: ${{ github.ref }}
- name: Install conan & packages
uses: ./.github/actions/conan
with:
build-config: ${{env.BUILD_CONFIGURATION}}
- name: Build DLL
uses: ./.github/actions/build
with:
build-config: ${{env.BUILD_CONFIGURATION}}
- name: Run tests
uses: ./.github/actions/tests
- name: Create GitHub Release
uses: ./.github/actions/release
with:
build-config: ${{env.BUILD_CONFIGURATION}}
version-name: ${{env.VERSION}}
prelease: true