From b3bea3c9258f4184f628944d1692b04e90ee6448 Mon Sep 17 00:00:00 2001 From: Samuel <36420837+Samueru-sama@users.noreply.github.com> Date: Mon, 21 Jul 2025 03:29:59 -0400 Subject: [PATCH 1/2] add job to download and release latest runtime and appimagetool --- .github/workflows/manual.yml | 43 ++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/manual.yml diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml new file mode 100644 index 00000000..eb5fae41 --- /dev/null +++ b/.github/workflows/manual.yml @@ -0,0 +1,43 @@ +name: Fetch and upload latest appimagetools and runtimes +concurrency: + group: build-${{ github.ref }} + cancel-in-progress: true + +on: + schedule: + - cron: "0 7 1/30 * *" + workflow_dispatch: {} + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Install wget + run: sudo apt update && sudo apt install wget + + - name: Download latest appimagetools + run: | + wget "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-aarch64.AppImage" + wget "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-armhf.AppImage" + wget "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-i686.AppImage" + wget "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage" + + - name: Download latest runtimes + run: | + wget "https://github.com/AppImage/type2-runtime/releases/download/continuous/runtime-aarch64" + wget "https://github.com/AppImage/type2-runtime/releases/download/continuous/runtime-armhf" + wget "https://github.com/AppImage/type2-runtime/releases/download/continuous/runtime-i686" + wget "https://github.com/AppImage/type2-runtime/releases/download/continuous/runtime-x86_64" + + - name: Release Artifacts + uses: softprops/action-gh-release@v2.2.2 + with: + name: "OBSOLETE" + tag_name: "14" + prerelease: false + draft: false + generate_release_notes: false + make_latest: true + files: | + *.AppImage + runtime-* From 51f92128996b03208dc5b2983376c6ac4a6d0e94 Mon Sep 17 00:00:00 2001 From: Samuel <36420837+Samueru-sama@users.noreply.github.com> Date: Mon, 21 Jul 2025 03:32:25 -0400 Subject: [PATCH 2/2] give better name to `.yml` --- .github/workflows/{manual.yml => get-latest-release.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{manual.yml => get-latest-release.yml} (100%) diff --git a/.github/workflows/manual.yml b/.github/workflows/get-latest-release.yml similarity index 100% rename from .github/workflows/manual.yml rename to .github/workflows/get-latest-release.yml