Skip to content

Bump ruff from 0.12.12 to 0.14.2 #54

Bump ruff from 0.12.12 to 0.14.2

Bump ruff from 0.12.12 to 0.14.2 #54

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: ghcr.io/flathub-infra/flatpak-github-actions:kde-6.9
options: --privileged
steps:
- uses: actions/checkout@v4
- uses: flatpak/flatpak-github-actions/flatpak-builder@master
with:
bundle: rare-${{ github.ref_name }}.flatpak
arch: x86_64
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@v3
with:
name: rare-${{ github.ref_name }}-x86_64
- 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