Skip to content

Commit

Permalink
Chore/jobs naming (#56)
Browse files Browse the repository at this point in the history
chore: jobs naming

Co-authored-by: ruslanglaznyov <ruslan.glaznyov@gmail.com>
  • Loading branch information
troykessler and RuslanGlaznyov authored Aug 1, 2023
1 parent 27c684f commit 351a805
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/integration-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- '*'
jobs:
prepare:
name: 'Check integrations for release'
runs-on: ubuntu-latest
outputs:
output: ${{ steps.set_env.outputs.test }}
Expand All @@ -14,7 +15,7 @@ jobs:
uses: actions/checkout@main
with:
ref: 'main'
- name: featch tags
- name: fetch tags
run: git fetch --tags
- name: collect integrations names
run: |
Expand Down Expand Up @@ -42,6 +43,7 @@ jobs:
build:
if: needs.prepare.outputs.output != '[]'
runs-on: ubuntu-latest
name: 'Integrations build & release'
needs: prepare
strategy:
matrix:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/kysor-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

jobs:
prepare:
name: 'Check kysor for release'
runs-on: ubuntu-latest
outputs:
output: ${{ steps.set_env.outputs.test }}
Expand Down Expand Up @@ -39,6 +40,7 @@ jobs:
id: set_env
run: echo "::set-output name=test::${{steps.output-tags.outputs.result}}"
build:
name: 'Kysor build & release'
if: needs.prepare.outputs.output != ''
runs-on: ubuntu-latest
needs: prepare
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/package-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- '*'
jobs:
prepare:
name: 'Check packages for release'
runs-on: ubuntu-latest
outputs:
output: ${{ steps.set_env.outputs.test }}
Expand Down Expand Up @@ -40,6 +41,7 @@ jobs:
id: set_env
run: echo "::set-output name=test::${{steps.output-tags.outputs.result}}"
release:
name: 'Packages release'
if: needs.prepare.outputs.output != '[]'
runs-on: ubuntu-latest
needs: prepare
Expand Down

0 comments on commit 351a805

Please sign in to comment.