Skip to content

Commit

Permalink
Fix ci workflow names (#461)
Browse files Browse the repository at this point in the history
* fix GitHub workflow names
  • Loading branch information
charlie-foxtrot authored Feb 5, 2024
1 parent 96289a6 commit 5b734c1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/platform_build
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cd build

# configure and build
cmake ${CMAKE_ARGS} ../
make -j
VERBOSE=1 make -j

# run unit tests
src/unittests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/platform_build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run CI
name: Platform Build

on:
push:
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,16 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh workflow run build.yml --ref ${{ steps.tag.outputs.new_tag }}
gh workflow run ci_build.yml --ref ${{ steps.tag.outputs.new_tag }}
- name: Run Platform Build ${{ steps.tag.outputs.new_tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh workflow run platform_build.yml --ref ${{ steps.tag.outputs.new_tag }}
- name: Build and Publish Containers for ${{ steps.tag.outputs.new_tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh workflow run build_containers.yml --ref ${{ steps.tag.outputs.new_tag }}
gh workflow run build_docker_containers.yml --ref ${{ steps.tag.outputs.new_tag }}

0 comments on commit 5b734c1

Please sign in to comment.