Skip to content

Commit 831aba0

Browse files
author
Vicenç García Altés
authored
Merge pull request #43 from VoxelGroup/FixPublishing
Fix publishing
2 parents 29dd43a + df8eb2c commit 831aba0

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: MiddyNet Continuous Integration
22

3-
on: push
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
tags-ignore:
8+
- preview-* # Don't run the CI build when publishing the preview nugets
9+
- release-* # Don't run the CI build when publishing the release nugets
410

511
jobs:
612
build:

.github/workflows/preview.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
name: MiddyNet Preview Continous Deployment
22
on:
3-
workflow_run:
4-
workflows:
5-
- "MiddyNet Continuous Integration"
3+
push:
64
branches:
75
- main
8-
types:
9-
- completed
106
tags:
117
- preview-*
128

139
jobs:
1410
build:
15-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
16-
1711
env:
1812
BUILD_CONFIG: Release
1913
VERSION_SUFFIX: -rc1.${{ github.run_number }}

.github/workflows/release.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
name: MiddyNet Release Continous Deployment
22
on:
3-
workflow_run:
4-
workflows:
5-
- "MiddyNet Continuous Integration"
3+
push:
64
branches:
75
- main
8-
types:
9-
- completed
106
tags:
117
- release-*
128

build/dependencies.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
</PropertyGroup>
66

77
<PropertyGroup Label="MiddyNet Versions">
8-
<middynet>1.2.0$(VersionSuffix)</middynet>
8+
<middynet>1.2.1$(VersionSuffix)</middynet>
99
</PropertyGroup>
1010
</Project>

0 commit comments

Comments
 (0)