-
Notifications
You must be signed in to change notification settings - Fork 53
executable file
·35 lines (31 loc) · 830 Bytes
/
Copy pathaddon.yml
File metadata and controls
executable file
·35 lines (31 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Add-on CI
on:
workflow_dispatch:
push:
paths:
- '.github/addon/**'
permissions: write-all
jobs:
build-release:
if: ${{ github.repository_owner == 'Kakathic' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build add-on
run: |
for vv in .github/addon/*; do
[ -d "$vv" ] || continue
echo "Processing: $vv"
(
cd "$vv"
. ./Add-on.bash
find . -exec touch -d "2026-01-01 00:00:00" {} +
7z a -t7z -mmt=off -mtc=off -mta=off -y /home/runner/${vv##*/}_$versionCode.add
)
done
- name: Upload module
uses: softprops/action-gh-release@v2
with:
name: "Tmp"
tag_name: "V1"
files: /home/runner/*.add