Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/tmp-chatgpt-apk-fetch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Temporary ChatGPT APK Fetch

on:
pull_request:
branches:
- main

permissions:
contents: read

jobs:
fetch-apk:
runs-on: ubuntu-latest
steps:
- name: Download latest release APK
env:
GH_TOKEN: ${{ github.token }}
run: |
gh release download --repo "$GITHUB_REPOSITORY" --pattern "HyperBridge-0.5.9-sykeptical-release.apk" --dir .
test -s HyperBridge-0.5.9-sykeptical-release.apk
sha256sum HyperBridge-0.5.9-sykeptical-release.apk > SHA256.txt
echo "ready"

- name: Upload APK artifact
uses: actions/upload-artifact@v4
with:
name: hyperbridge-0.5.9-apk
path: |
HyperBridge-0.5.9-sykeptical-release.apk
SHA256.txt
if-no-files-found: error
retention-days: 1