Skip to content

Commit

Permalink
Updated deps (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiryuumaru committed Jun 4, 2024
1 parent a47303e commit 3540cdc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 48 deletions.
55 changes: 8 additions & 47 deletions .github/workflows/nuke-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,21 +87,6 @@ jobs:
strategy:
matrix:
include: ${{ fromJson(needs.pre_setup.outputs.NUKE_PRE_SETUP_OUTPUT_TEST_MATRIX) }}
test_validation:
name: Test Validation
runs-on: ubuntu-22.04
steps:
- id: NUKE_TEST_SUCCESS
name: Resolve NUKE_TEST_SUCCESS
run: echo "NUKE_TEST_SUCCESS=${NUKE_TEST_SUCCESS_GITHUB/success/ok}" >> $GITHUB_OUTPUT
needs:
- pre_setup
- test
if: success()
env:
NUKE_TEST_SUCCESS_GITHUB: ${{ needs.test.result }}
outputs:
NUKE_TEST_SUCCESS: ${{ steps.NUKE_TEST_SUCCESS.outputs.NUKE_TEST_SUCCESS }}
build:
name: Build - ${{ matrix.name }}
runs-on: ${{ matrix.runs_on }}
Expand Down Expand Up @@ -134,30 +119,12 @@ jobs:
needs:
- pre_setup
- test
- test_validation
if: success()
env:
NUKE_PRE_SETUP_OUTPUT: ${{ needs.pre_setup.outputs.NUKE_PRE_SETUP_OUTPUT }}
strategy:
matrix:
include: ${{ fromJson(needs.pre_setup.outputs.NUKE_PRE_SETUP_OUTPUT_BUILD_MATRIX) }}
build_validation:
name: Build Validation
runs-on: ubuntu-22.04
steps:
- id: NUKE_BUILD_SUCCESS
name: Resolve NUKE_BUILD_SUCCESS
run: echo "NUKE_BUILD_SUCCESS=${NUKE_BUILD_SUCCESS_GITHUB/success/ok}" >> $GITHUB_OUTPUT
needs:
- pre_setup
- test
- test_validation
- build
if: success()
env:
NUKE_BUILD_SUCCESS_GITHUB: ${{ needs.build.result }}
outputs:
NUKE_BUILD_SUCCESS: ${{ steps.NUKE_BUILD_SUCCESS.outputs.NUKE_BUILD_SUCCESS }}
publish:
name: Publish - ${{ matrix.name }}
runs-on: ${{ matrix.runs_on }}
Expand Down Expand Up @@ -189,34 +156,30 @@ jobs:
needs:
- pre_setup
- test
- test_validation
- build
- build_validation
if: success()
env:
NUKE_PRE_SETUP_OUTPUT: ${{ needs.pre_setup.outputs.NUKE_PRE_SETUP_OUTPUT }}
strategy:
matrix:
include: ${{ fromJson(needs.pre_setup.outputs.NUKE_PRE_SETUP_OUTPUT_PUBLISH_MATRIX) }}
publish_validation:
name: Publish Validation
run_validation:
name: Run Validation
runs-on: ubuntu-22.04
steps:
- id: NUKE_PUBLISH_SUCCESS
name: Resolve NUKE_PUBLISH_SUCCESS
run: echo "NUKE_PUBLISH_SUCCESS=${NUKE_PUBLISH_SUCCESS_GITHUB/success/ok}" >> $GITHUB_OUTPUT
- id: NUKE_RUN_SUCCESS
name: Resolve NUKE_RUN_SUCCESS
run: echo "NUKE_RUN_SUCCESS=${NUKE_RUN_SUCCESS_GITHUB/success/ok}" >> $GITHUB_OUTPUT
needs:
- pre_setup
- test
- test_validation
- build
- build_validation
- publish
if: success()
env:
NUKE_PUBLISH_SUCCESS_GITHUB: ${{ needs.publish.result }}
NUKE_RUN_SUCCESS_GITHUB: ${{ needs.publish.result }}
outputs:
NUKE_PUBLISH_SUCCESS: ${{ steps.NUKE_PUBLISH_SUCCESS.outputs.NUKE_PUBLISH_SUCCESS }}
NUKE_RUN_SUCCESS: ${{ steps.NUKE_RUN_SUCCESS.outputs.NUKE_RUN_SUCCESS }}
post_setup:
name: Post Setup
runs-on: ubuntu-22.04
Expand All @@ -237,11 +200,9 @@ jobs:
needs:
- pre_setup
- test
- test_validation
- build
- build_validation
- publish
- publish_validation
- run_validation
if: success() || failure() || always()
env:
NUKE_PRE_SETUP_OUTPUT: ${{ needs.pre_setup.outputs.NUKE_PRE_SETUP_OUTPUT }}
Expand Down
2 changes: 1 addition & 1 deletion build/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<ItemGroup>
<PackageReference Include="Nuke.Common" Version="8.0.0" />
<PackageReference Include="NukeBuildHelpers" Version="2.6.0" />
<PackageReference Include="NukeBuildHelpers" Version="2.6.1" />
</ItemGroup>

</Project>

0 comments on commit 3540cdc

Please sign in to comment.