Skip to content

mihaialexandrescu is learning GitHub Actions again #6

mihaialexandrescu is learning GitHub Actions again

mihaialexandrescu is learning GitHub Actions again #6

Workflow file for this run

name: flow-02
run-name: ${{ github.actor }} is learning GitHub Actions again
on: [push, workflow_dispatch]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
call-reusable-01-from-local-repo:
uses: ./.github/workflows/reusable-01.yaml
job2:
runs-on: ubuntu-latest
needs: [call-reusable-01-from-local-repo]
steps:
- name: Display output from another workflow file
run: echo ${{ needs.call-reusable-01-from-local-repo.outputs.gomodule01_output }}