diff --git a/.github/workflows/update.yaml b/.github/workflows/update.yaml new file mode 100644 index 0000000..f939450 --- /dev/null +++ b/.github/workflows/update.yaml @@ -0,0 +1,25 @@ +name: Update submodules +on: + repository_dispatch: + types: update + +jobs: + update: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Update module + run: | + git submodule update --init --recursive --checkout -f + + - name: Commit and push + uses: EndBug/add-and-commit@v9 + with: + add: "WinApps-Launcher" + default_author: github_actions + message: "Update submodules" + push: true + fetch: true diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..2c3ac9c --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "WinApps-Launcher"] + path = WinApps-Launcher + url = https://github.com/winapps-org/WinApps-Launcher.git diff --git a/WinApps-Launcher b/WinApps-Launcher new file mode 160000 index 0000000..eaa660d --- /dev/null +++ b/WinApps-Launcher @@ -0,0 +1 @@ +Subproject commit eaa660d39bf3f49b136c98c87c35e3e12f118f8f