File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ echo "DRY RUN: Would add new files"
6363svn status 2> /dev/null | grep -v ' ^.[ \t]*\\..*' | { grep ' ^?' || true ; } | awk ' {print $2}' | sed ' s|^| Would add: |' || true
6464
6565echo " "
66- echo " 📊 ** SVN Status Summary (what would be committed):** "
66+ echo " SVN Status Summary (what would be committed):"
6767echo " =========================================="
6868SVN_STATUS=$( svn status 2> /dev/null || echo " " )
6969TOTAL_CHANGES=0
Original file line number Diff line number Diff line change 5757 uses : actions/upload-artifact@v4
5858 with :
5959 name : hello-elementor
60- path : hello-elementor
60+ path : hello-elementor.*.zip
6161 retention-days : 7
Original file line number Diff line number Diff line change 2121
2222 deploy :
2323 needs : build
24+ if : needs.build.result == 'success'
2425 runs-on : ubuntu-latest
2526 steps :
2627 - name : Checkout repository
3233 uses : actions/download-artifact@v4
3334 with :
3435 name : hello-elementor
36+ - name : Extract Hello Theme build
37+ run : |
38+ HT_ZIP=$(find . -name "hello-elementor-*.zip" -o -name "hello-elementor.*.zip" -type f | head -1)
39+ unzip -q "$HT_ZIP" -d ./tmp/
40+ mv ./tmp/hello-elementor ./hello-elementor
41+ rm -rf ./tmp
3542 - name : Validate changelog
3643 env :
3744 VERSION : ${{ env.THEME_VERSION }}
You can’t perform that action at this time.
0 commit comments