Skip to content

Commit

Permalink
Fix output path
Browse files Browse the repository at this point in the history
  • Loading branch information
AronHetLam committed Sep 20, 2023
1 parent ac1e314 commit 6ef0f11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ jobs:
ref: gh-pages
- uses: actions/download-artifact@v3
with:
path: output
path: ./output
- name: merge manifests
run: |
jq -s '[.[] | select(.name == "ATEM_tally_light")] | (.[0] | with_entries(select(.key != "builds"))) + {builds: map(.builds) | add}' output/*/manifest.json > output/ATEM_tally_light_manifest.json
jq -s '[.[] | select(.name == "ATEM_tally_light")] | (.[0] | with_entries(select(.key != "builds"))) + {builds: map(.builds) | add}' output/*/manifest.json > output/ATEM_tally_light_manifest.json &&
jq -s '[.[] | select(.name == "ATEM_tally_test_server")] | (.[0] | with_entries(select(.key != "builds"))) + {builds: map(.builds) | add}' output/*/manifest.json > output/ATEM_tally_test_server_manifest.json
- uses: actions/configure-pages@v3
- uses: actions/jekyll-build-pages@v1
with:
destination: output
destination: ./output
- uses: actions/upload-pages-artifact@v2
with:
path: output
path: ./output

0 comments on commit 6ef0f11

Please sign in to comment.