mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-19 07:19:45 +02:00
- Update tag to v2026.2.0 - Use SKIP_WASM_BUILD env var instead of build-time package.json patch - Install metainfo from git source (remove temporary type: file source) - Fix fix-lockfile.mjs to skip workspace packages - CI: commit metainfo releases back to app repo, bump permissions to write
71 lines
2.4 KiB
YAML
71 lines
2.4 KiB
YAML
name: Update Flathub
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
update-flathub:
|
|
name: Update Flathub manifest
|
|
runs-on: ubuntu-latest
|
|
# Only run for stable releases (skip betas/pre-releases)
|
|
if: ${{ !github.event.release.prerelease }}
|
|
steps:
|
|
- name: Checkout app repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
|
|
- name: Install source generators
|
|
run: |
|
|
pip install flatpak-node-generator tomlkit aiohttp
|
|
git clone --depth 1 https://github.com/flatpak/flatpak-builder-tools flatpak/flatpak-builder-tools
|
|
|
|
- name: Run update-manifest.sh
|
|
run: bash flatpak/update-manifest.sh "${{ github.event.release.tag_name }}"
|
|
|
|
- name: Commit metainfo update to app repo
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
git add flatpak/app.yaak.Yaak.metainfo.xml
|
|
git diff --cached --quiet && echo "No metainfo changes" && exit 0
|
|
git commit -m "Add ${{ github.event.release.tag_name }} to metainfo releases"
|
|
git push origin HEAD:main
|
|
|
|
- name: Checkout Flathub repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: flathub/app.yaak.Yaak
|
|
token: ${{ secrets.FLATHUB_TOKEN }}
|
|
path: flathub-repo
|
|
|
|
- name: Copy updated files to Flathub repo
|
|
run: |
|
|
cp flatpak/app.yaak.Yaak.yml flathub-repo/
|
|
cp flatpak/app.yaak.Yaak.metainfo.xml flathub-repo/
|
|
cp flatpak/cargo-sources.json flathub-repo/
|
|
cp flatpak/node-sources.json flathub-repo/
|
|
cp LICENSE flathub-repo/
|
|
sed -i 's|path: \.\./LICENSE|path: LICENSE|' flathub-repo/app.yaak.Yaak.yml
|
|
|
|
- name: Commit and push to Flathub
|
|
working-directory: flathub-repo
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
git add -A
|
|
git diff --cached --quiet && echo "No changes to commit" && exit 0
|
|
git commit -m "Update to ${{ github.event.release.tag_name }}"
|
|
git push
|