Skip to content

Commit

Permalink
test(ci): test release 7 (#5332)
Browse files Browse the repository at this point in the history
  • Loading branch information
kduret authored Dec 9, 2024
2 parents 7d2db76 + 4a76825 commit 242c7ad
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/actions/package-delivery/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,10 @@ runs:
}
- name: Publish packages to ${{ inputs.stability }}
if: |
contains(fromJson('["testing", "unstable"]'), inputs.stability) ||
(inputs.stability == 'stable' && github.event_name == 'push' && inputs.distrib != 'jammy')
# if: |
# contains(fromJson('["testing", "unstable"]'), inputs.stability) ||
# (inputs.stability == 'stable' && github.event_name == 'push' && inputs.distrib != 'jammy')
if: contains(fromJson('["testing", "unstable"]'), inputs.stability)
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:
branches:
- develop
- master
- MON-78778-detect-pr
paths:
- '.github/workflows/plugins.yml'
- '.github/scripts/plugins-source.container.pl'
Expand Down Expand Up @@ -358,9 +359,13 @@ jobs:

deliver-packages:
needs: [get-environment, get-plugins, test-plugins]
# if: |
# needs.get-plugins.outputs.plugins != '' &&
# (contains(fromJson('["testing", "unstable"]'), needs.get-environment.outputs.stability) || (needs.get-environment.outputs.stability == 'stable' && github.event_name != 'workflow_dispatch')) &&
# ! cancelled() &&
# ! contains(needs.*.result, 'failure') &&
# ! contains(needs.*.result, 'cancelled')
if: |
needs.get-plugins.outputs.plugins != '' &&
(contains(fromJson('["testing", "unstable"]'), needs.get-environment.outputs.stability) || (needs.get-environment.outputs.stability == 'stable' && github.event_name != 'workflow_dispatch')) &&
! cancelled() &&
! contains(needs.*.result, 'failure') &&
! contains(needs.*.result, 'cancelled')
Expand Down
1 change: 0 additions & 1 deletion src/blockchain/hyperledger/exporter/plugin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ sub new {
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;


$self->{version} = '0.1';
%{$self->{modes}} = (
'channels' => 'blockchain::hyperledger::exporter::mode::channels',
Expand Down

0 comments on commit 242c7ad

Please sign in to comment.