Skip to content

Update to 1.10.11.525 #13

Update to 1.10.11.525

Update to 1.10.11.525 #13

Workflow file for this run

name: "Flatpak"
on:
workflow_dispatch:
release:
types: [ published ]
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: write
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:kde-6.7
options: --privileged
steps:
- uses: actions/checkout@v4
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: rare-${{ github.ref_name }}.flatpak
manifest-path: io.github.dummerle.rare.yaml
cache-key: flatpak-builder-${{ github.sha }}
release:
needs: build
if: github.event_name == 'release'
name: "Release"
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: rare-${{ github.ref_name }}-x86_64.zip
- uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: rare-${{ github.ref_name }}.flatpak
asset_name: rare-${{ github.ref_name }}.flatpak
tag: ${{ github.ref_name }}
overwrite: true