Skip to content

Commit

Permalink
Refactor devcontainer build step in release workflow: Update release.…
Browse files Browse the repository at this point in the history
…yaml to use correct output variable
  • Loading branch information
lgersman committed Oct 14, 2024
1 parent af9d5db commit 8d4f529
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-devcontainer-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ jobs:
refs/heads/develop
eventFilterForPush: |
push
imageName: ${{ steps.devcontainer_image_name.outputs.image_name }}
imageName: ${{ steps.devcontainer_image_name.outputs.image_name }}


4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
uses: actions/checkout@v4

- name: display output name
run: echo "image_name=${{ needs.build_dev_container_image.outputs.image_name }}"
run: echo "image_name=${{ needs.build_devcontainer_image.outputs.image_name }}"

- name: Dump GitHub Needs context
env:
NEEDS_CONTEXT: ${{ toJson(needs) }}
run: echo "$NEEDS_CONTEXT"

build-dev-container-image:
build-devcontainer-image:
uses: ./.github/workflows/build-devcontainer-image.yaml

0 comments on commit 8d4f529

Please sign in to comment.