Skip to content

Manual workflow

Manual workflow #10

Workflow file for this run

name: Manual workflow
on:
workflow_dispatch:
jobs:
suiteRunner:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4
with:
repository: eiffel-community/etos-suite-runner
- name: Get version
id: getVersion
run: |
VERSION=$(gh release view --json tagName --jq .tagName)
echo "::set-output name=version::$VERSION"
outputs:
version: ${{ steps.getVersion.outputs.version }}
environmentProvider:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4
with:
repository: eiffel-community/etos-environment-provider
- name: Get version
id: getVersion
run: |
VERSION=$(gh release view --json tagName --jq .tagName)
echo "::set-output name=version::$VERSION"
outputs:
version: ${{ steps.getVersion.outputs.version }}
suiteStarter:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4
with:
repository: eiffel-community/etos-suite-starter
- name: Get version
id: getVersion
run: |
VERSION=$(gh release view --json tagName --jq .tagName)
echo "::set-output name=version::$VERSION"
outputs:
version: ${{ steps.getVersion.outputs.version }}
api:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4
with:
repository: eiffel-community/etos-api
- name: Get version
id: getVersion
run: |
VERSION=$(gh release view --json tagName --jq .tagName)
echo "::set-output name=version::$VERSION"
outputs:
version: ${{ steps.getVersion.outputs.version }}
echo:
runs-on: ubuntu-latest
needs: [suiteRunner, environmentProvider, suiteStarter, api]
steps:
- run: |
echo "github.com/eiffel-community/etos-suite-runner//manifests/base?ref=${{ needs.suiteRunner.outputs.version }}"
echo "github.com/eiffel-community/etos-environment-provider//manifests/base?ref=${{ needs.environmentProvider.outputs.version }}"
echo "github.com/eiffel-community/etos-suite-starter//manifests/base?ref=${{ needs.suiteStarter.outputs.version }}"
echo "github.com/eiffel-community/etos-api//manifests/base?ref=${{ needs.api.outputs.version }}"