Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 4478bfa

Browse files
committed
👷 Build flatpaks for alpha releases
1 parent a0d9783 commit 4478bfa

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

‎.github/workflows/alpha.yml‎

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,3 +396,34 @@ jobs:
396396
commit_user_name: Fushra Robot
397397
commit_user_email: trickypr@gmail.com
398398
repository: ./updates
399+
400+
distro-flatpak:
401+
name: Build flatpak repos
402+
needs: [build-data, release]
403+
runs-on: ubuntu-latest
404+
405+
steps:
406+
- uses: actions/checkout@v3
407+
with:
408+
repository: pulse-browser/packages
409+
token: ${{ secrets.ROBOT_TOKEN }}
410+
submodules: recursive
411+
412+
- name: Import GPG keys
413+
run: |
414+
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import --homedir ~/.gpg
415+
env:
416+
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
417+
418+
- name: Build flatpak
419+
run: |
420+
cd flatpak
421+
./build.sh alpha
422+
423+
- name: Upload flatpak repo
424+
uses: stefanzweifel/git-auto-commit-action@v4
425+
with:
426+
commit_message: 📦 Upload flatpak for ${{ needs.build-data.outputs.version }}
427+
commit_user_name: Fushra Robot
428+
commit_user_email: trickypr@gmail.com
429+
repository: ./repo

‎gluon‎

Submodule gluon updated from b5f5214 to 09e72df

0 commit comments

Comments
 (0)