Skip to content

Commit 9d9974c

Browse files
committed
Update
1 parent 8ee358f commit 9d9974c

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/addon.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,18 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- name: Build add-on
1818
run: |
19-
for vv in /home/runner/.github/addon/*; do
19+
for vv in .github/addon/*; do
2020
[ -d "$vv" ] || continue
2121
echo "Processing: $vv"
22+
(
2223
cd "$vv"
23-
7z a -t7z -y /home/runner/.github/addon/${vv%*/}.add
24+
7z a -t7z -y /home/runner/${vv%*/}.add
25+
)
2426
done
2527
2628
- name: Upload module
2729
uses: softprops/action-gh-release@v2
2830
with:
2931
name: "Tmp"
3032
tag_name: "V1"
31-
files: /home/runner/.github/addon/*.add
33+
files: /home/runner/*.add

0 commit comments

Comments
 (0)