Skip to content

Commit

Permalink
Fix pio cache
Browse files Browse the repository at this point in the history
  • Loading branch information
AronHetLam committed Sep 20, 2023
1 parent d4b19bf commit fc98d69
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 @@ -50,7 +50,7 @@ jobs:
uses: actions/cache@v3
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
key: ${{ runner.os }}-pio-${{ matrix.environment }}-${{ hashFiles('**/platform.io') }}
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -81,13 +81,13 @@ jobs:
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_test_server")] | (.[0] | with_entries(select(.key != "builds"))) + {builds: map(.builds) | add}' output/*/manifest.json > ./output/ATEM_tally_test_server_manifest.json
- run: echo "${{ github.workspace }} $GITHUB_WORKSPACE"
- run: echo dir
- uses: actions/configure-pages@v3
- run: echo "${{ github.workspace }} $GITHUB_WORKSPACE"
- run: dir
- uses: actions/jekyll-build-pages@v1
with:
destination: ./output
- run: echo "${{ github.workspace }} $GITHUB_WORKSPACE"
- run: echo dir
- uses: actions/upload-pages-artifact@v2
with:
path: ./output

0 comments on commit fc98d69

Please sign in to comment.