diff --git a/.github/workflows/flatpak.yaml b/.github/workflows/flatpak.yaml deleted file mode 100644 index cffdd4f..0000000 --- a/.github/workflows/flatpak.yaml +++ /dev/null @@ -1,47 +0,0 @@ -on: - workflow_dispatch: - push: - tags: - - "*" - pull_request: - branches: - - main -name: "Flatpak" -jobs: - flatpak: - name: "Flatpak" - runs-on: ubuntu-latest - timeout-minutes: 600 - container: - image: bilelmoussaoui/flatpak-github-actions:gnome-43 - options: --privileged - strategy: - matrix: - arch: [x86_64, aarch64] - fail-fast: false - steps: - - uses: actions/checkout@v3 - with: - submodules: recursive - - name: Prepare Node - uses: actions/setup-node@v3 - with: - node-version: 18 - - name: Install yarn - run: | - npm i -gy yarn - - name: Install Docker - run: | - dnf -y install docker - - name: Setup QEMU - id: qemu - uses: docker/setup-qemu-action@v2 - with: - platforms: arm64 - - uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v5 - name: "Build" - with: - bundle: com.vixalien.sticky.flatpak - manifest-path: com.vixalien.sticky.json - cache-key: flatpak-builder-${{ github.sha }} - arch: ${{ matrix.arch }}