Skip to content

Commit

Permalink
More diagnostic output
Browse files Browse the repository at this point in the history
  • Loading branch information
HEnquist committed Jan 1, 2024
1 parent 83386a5 commit 78047fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ jobs:
id: fe_tag_step
run: |
FE_TAG=$(sed -n 's/camillagui_tag: \(.*\)$/\1/p' release_automation/versions.yml)
echo "fe_tag=$FE_TAG"
echo "fe_tag=$FE_TAG" >> "$GITHUB_OUTPUT"
build_fe:
runs-on: ubuntu-latest
needs: read_fe_tag
steps:
- uses: actions/checkout@v3
name: Check out frontend ${{ needs.read_fe_tag.outputs.fe_tag }}
with:
repository: HEnquist/camillagui
ref: ${{ needs.read_fe_tag.outputs.fe_tag }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ jobs:
id: fe_tag_step
run: |
FE_TAG=$(sed -n 's/camillagui_tag: \(.*\)$/\1/p' release_automation/versions.yml)
echo "fe_tag=$FE_TAG"
echo "fe_tag=$FE_TAG" >> "$GITHUB_OUTPUT"
build_fe:
runs-on: ubuntu-latest
needs: read_fe_tag
steps:
- uses: actions/checkout@v3
name: Check out frontend ${{ needs.read_fe_tag.outputs.fe_tag }}
with:
repository: HEnquist/camillagui
ref: ${{ needs.read_fe_tag.outputs.fe_tag }}
Expand Down

0 comments on commit 78047fa

Please sign in to comment.