Post directive with always block include steps

Hi there community, I am wondering if there is any possibility to use a POST block and inside an ALWAYS directive to be able to use multiple steps or stages.

post {
    always {
        steps {
           action 1
        }
        steps {
           final action
        }
    }
}

Is there any approachable way of including various steps inside an always-post block?
Thanks

I guess why do you need steps? You can just add the various actions directly.

post {
  always {
    recordIssues aggregatingResults: true, enabledForFailure: true, tools: [flake8(pattern: 'pylint.log')]
    junit 'pytest-report.xml'
    cobertura autoUpdateHealth: false, autoUpdateStability: false, coberturaReportFile: 'coverage.xml', conditionalCoverageTargets: '70, 0, 0', enableNewApi: true, failUnhealthy: false, failUnstable: false, lineCoverageTargets: '80, 0, 0', maxNumberOfBuilds: 0, methodCoverageTargets: '80, 0, 0', onlyStable: false, sourceEncoding: 'ASCII', zoomCoverageChart: false
  }
}

Works just fine.