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