Skip to content

Commit 098e576

Browse files
committed
Draft.
1 parent f2ed581 commit 098e576

File tree

1 file changed

+47
-8
lines changed

1 file changed

+47
-8
lines changed

.github/workflows/build_a1111forge.yml

Lines changed: 47 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -543,14 +543,53 @@ jobs:
543543
timeout-minutes: 90
544544

545545

546-
- name: release! files
547-
uses: softprops/action-gh-release@v1
548-
with:
549-
tag_name: build-${{ github.run_id }}-${{ github.run_attempt }}
550-
name: build
551-
files: |
552-
./_local/stable-diffusion-webui-forge-lllyasviel-linux.tar.xz.part*
553-
#./_local/stable-diffusion-webui-reForge-Panchovix-linux.tar.xz.part*
546+
#- name: release! files
547+
#uses: softprops/action-gh-release@v1
548+
#with:
549+
#tag_name: build-${{ github.run_id }}-${{ github.run_attempt }}
550+
#name: build
551+
#files: |
552+
#./_local/stable-diffusion-webui-forge-lllyasviel-linux.tar.xz.part*
553+
##./_local/stable-diffusion-webui-reForge-Panchovix-linux.tar.xz.part*
554+
555+
- name: release! files - stable-diffusion-webui-forge-lllyasviel-linux.tar.xz
556+
shell: bash
557+
run: |
558+
#gh release create build-${{ github.run_id }}-${{ github.run_attempt }} --title build --notes ""
559+
bash -c '
560+
for currentFile in /_local/stable-diffusion-webui-forge-lllyasviel-linux.tar.xz.part*
561+
do
562+
./ubiquitous_bash.sh _stopwatch gh release upload build-${{ github.run_id }}-${{ github.run_attempt }} "$currentFile" &
563+
while [[ $(jobs | wc -l) -ge 3 ]]
564+
do
565+
sleep 2
566+
done
567+
done
568+
wait
569+
'
570+
env:
571+
GH_TOKEN: ${{ github.token }}
572+
573+
- name: release! files - stable-diffusion-webui-reForge-Panchovix-linux.tar.xz
574+
shell: bash
575+
run: |
576+
#gh release create build-${{ github.run_id }}-${{ github.run_attempt }} --title build --notes ""
577+
bash -c '
578+
for currentFile in /_local/stable-diffusion-webui-reForge-Panchovix-linux.tar.xz.part*
579+
do
580+
./ubiquitous_bash.sh _stopwatch gh release upload build-${{ github.run_id }}-${{ github.run_attempt }} "$currentFile" &
581+
while [[ $(jobs | wc -l) -ge 3 ]]
582+
do
583+
sleep 2
584+
done
585+
done
586+
wait
587+
'
588+
env:
589+
GH_TOKEN: ${{ github.token }}
590+
591+
592+
554593

555594

556595

0 commit comments

Comments
 (0)