Skip to content

Commit

Permalink
changed workflow boards template path
Browse files Browse the repository at this point in the history
  • Loading branch information
pr3y committed Nov 20, 2024
1 parent 104e489 commit caad2bd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/buil_parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,9 @@
echo "$js_content" > "./Manifest-${{ matrix.board.name }}.json"
html="<li><label><input type='radio' name='type' value='${{ matrix.board.name }}' />${{ matrix.board.vendor }} - <a href='${{ matrix.board.link }}'>${{ matrix.board.name }}</a> ${{ matrix.board.description }}</label></li>"
echo "$html" > ./board.html
cat ./board.html
echo "$html" > ~/board.html
cat ~/board.html
echo $HOME
pwd
- name: Upload ${{ matrix.board.name }}
Expand Down Expand Up @@ -224,7 +225,7 @@
run: |
html="<ul class='radios'>"
# Itera sobre cada arquivo HTML na pasta de artefatos e adiciona seu conteúdo à variável HTML
for file in ~/BruceArtifacts/*/*.html; do
for file in /home/runner/work/Bruce/Bruce/*.html; do
if [ -f "$file" ]; then
content=$(cat "$file")
html+="$content"
Expand Down

0 comments on commit caad2bd

Please sign in to comment.