-
Notifications
You must be signed in to change notification settings - Fork 55
43 lines (38 loc) · 1011 Bytes
/
branch-develop.yml
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
42
43
name: Deploy Develop Branch
on:
push:
branches:
- develop
paths:
- 'src/**'
- 'test/**'
- '**.sln'
- '**.cake'
- '.github/workflows/branch-develop.yml'
- '.github/workflows/step-*.yml'
workflow_dispatch:
jobs:
get-version:
uses: ./.github/workflows/step-version.yml
with:
is-pre-release: true
build:
needs: [get-version]
uses: ./.github/workflows/step-build.yml
secrets: inherit
with:
version: ${{ needs.get-version.outputs.version }}
checkout-ref: ${{ github.base_ref }}
publish-to-nuget:
needs: [get-version,build]
uses: ./.github/workflows/step-publish.yml
secrets: inherit
with:
deploy-env: nuget-beta
deploy-branch: ${{ github.base_ref }}
version: ${{ needs.get-version.outputs.version }}
tag-release:
needs: [get-version,publish-to-nuget]
uses: ./.github/workflows/step-tag-release.yml
with:
version: ${{ needs.get-version.outputs.version }}