Skip to content

Commit

Permalink
fix: syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
radupopa369 committed Feb 27, 2025
1 parent cd1245d commit 6b3f73f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-push-containers-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ jobs:
steps:
# I know this is not pretty (debug information) but it's useful to have this
- name: Read github context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "INFO: github context object content below"
echo "${{ toJson(github) }}"
echo "${GITHUB_CONTEXT}"
build-push-checked-containers:
uses: ./.github/workflows/build-push-container.yml
Expand Down
18 changes: 12 additions & 6 deletions .github/workflows/checks-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,18 @@ on:
- '**'

jobs:


read-github-context-object:
runs-on: buildjet-8vcpu-ubuntu-2404
steps:
# I know this is not pretty (debug information) but it's useful to have this
- name: Read github context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "INFO: github context object content below"
echo "${GITHUB_CONTEXT}"
build:
strategy:
matrix:
Expand All @@ -26,11 +37,6 @@ jobs:
runs-on: ${{ matrix.runs-on }}

steps:
# I know this is not pretty (debug information) but it's useful to have this
- name: Read github context
run: |
echo "INFO: github context object content below"
echo "${{ toJson(github) }}"

- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hsm-demo-containers.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Push Containers
name: HSM Demo Build Push Containers

on:
pull_request:
Expand Down

0 comments on commit 6b3f73f

Please sign in to comment.