Skip to content

Commit 50bb9ba

Browse files
committed
Reënable logic to only release-build releases
1 parent 90769be commit 50bb9ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
# Use CMake to "install" build artifacts (only interested in CMake registered targets) to our custom artifacts directory
5252
run: cmake --install . --config Debug
5353

54-
# Only run last three steps if this is a release
54+
# Only run last two steps if this is a release
5555
- name: Release
56-
# if: github.event == 'release'
56+
if: github.event == 'release'
5757
env:
5858
CXX: ${{ matrix.cxx }}
5959
# Use a bash shell so we can use the same syntax for environment variable
@@ -70,7 +70,7 @@ jobs:
7070
7171
# Only Upload releases
7272
- name: Upload
73-
# if: github.event == 'release'
73+
if: github.event == 'release'
7474
uses: actions/upload-artifact@v2
7575
with:
7676
name: build_${{ github.sha }}_${{ matrix.os }}_${{ matrix.cxx }}

0 commit comments

Comments
 (0)