From 57887c1210ba0ba36296597db9292a837d5059ce Mon Sep 17 00:00:00 2001 From: tranch Date: Thu, 22 Jan 2026 00:42:42 +0800 Subject: feat: introduce Decky Installer mirror files Add initial setup for the mirrored Decky Installer. Includes the install script, desktop file, and GitHub release workflow. The script modifies the official installer to use a custom mirror host. --- .github/workflows/release-on-tag.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/release-on-tag.yml (limited to '.github') diff --git a/.github/workflows/release-on-tag.yml b/.github/workflows/release-on-tag.yml new file mode 100644 index 0000000..f91b30f --- /dev/null +++ b/.github/workflows/release-on-tag.yml @@ -0,0 +1,24 @@ +name: Release on Tag + +on: + push: + tags: + - "*" + +jobs: + release: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Create GitHub release + uses: softprops/action-gh-release@v2 + with: + name: ${{ github.ref_name }} + tag_name: ${{ github.ref_name }} + files: | + user_install_script.sh + decky_installer.desktop -- cgit v1.2.3