Skip to content

Commit e54a86a

Browse files
committed
Update
1 parent 0b2933c commit e54a86a

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/addon.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,18 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
17-
1817
- name: Build add-on
1918
run: |
20-
for vv in .github/addon/*; do
19+
for vv in $HOME/.github/addon/*; do
2120
[ -d "$vv" ] || continue
22-
echo "Processing $vv"
23-
(
21+
echo "Processing: $vv"
2422
cd "$vv"
25-
7z a -t7z -y ../${vv%*/}.add
26-
)
23+
7z a -t7z -y $HOME/.github/addon/${vv%*/}.add
2724
done
28-
cd ~
2925
3026
- name: Upload module
3127
uses: softprops/action-gh-release@v2
3228
with:
3329
name: "Tmp"
3430
tag_name: "V1"
35-
files: |
36-
.github/addon/*.add
31+
files: .github/addon/*.add

0 commit comments

Comments
 (0)