We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ee358f commit 9d9974cCopy full SHA for 9d9974c
1 file changed
.github/workflows/addon.yml
@@ -16,16 +16,18 @@ jobs:
16
- uses: actions/checkout@v4
17
- name: Build add-on
18
run: |
19
- for vv in /home/runner/.github/addon/*; do
+ for vv in .github/addon/*; do
20
[ -d "$vv" ] || continue
21
echo "Processing: $vv"
22
+ (
23
cd "$vv"
- 7z a -t7z -y /home/runner/.github/addon/${vv%*/}.add
24
+ 7z a -t7z -y /home/runner/${vv%*/}.add
25
+ )
26
done
27
28
- name: Upload module
29
uses: softprops/action-gh-release@v2
30
with:
31
name: "Tmp"
32
tag_name: "V1"
- files: /home/runner/.github/addon/*.add
33
+ files: /home/runner/*.add
0 commit comments