Skip to content

Commit 8ee358f

Browse files
committed
Update
1 parent 7be5fde commit 8ee358f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/addon.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- name: Build add-on
1818
run: |
19-
for vv in .github/addon/*; do
19+
for vv in /home/runner/.github/addon/*; do
2020
[ -d "$vv" ] || continue
2121
echo "Processing: $vv"
2222
cd "$vv"
23-
7z a -t7z -y $HOME/${vv%*/}.add
23+
7z a -t7z -y /home/runner/.github/addon/${vv%*/}.add
2424
done
2525
2626
- name: Upload module
2727
uses: softprops/action-gh-release@v2
2828
with:
2929
name: "Tmp"
3030
tag_name: "V1"
31-
files: $HOME/*.add
31+
files: /home/runner/.github/addon/*.add

0 commit comments

Comments
 (0)