From e917219c28b317152e79f28d6736fb2d9ca50375 Mon Sep 17 00:00:00 2001 From: Angoosh Leviocki Date: Wed, 12 Feb 2025 20:11:54 +0100 Subject: [PATCH] added workflow for test --- .../.gitea/workflows/deploy.yaml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 com.angoosh.RDPConnect/.gitea/workflows/deploy.yaml diff --git a/com.angoosh.RDPConnect/.gitea/workflows/deploy.yaml b/com.angoosh.RDPConnect/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..4f8b92c --- /dev/null +++ b/com.angoosh.RDPConnect/.gitea/workflows/deploy.yaml @@ -0,0 +1,25 @@ +name: com.angoosh.RDPConnect deploy +run-name: ${{ gitea.actor }} +on: + push: + branches: [main] +jobs: + flatpak: + name: "Flatpak" + runs-on: ubuntu-latest + container: + image: bilelmoussaoui/flatpak-github-actions:gnome-47 + options: --privileged + steps: + - uses: actions/checkout@v4 + - uses: flatpak/flatpak-github-actions/flatpak-builder@v6 + name: "Build" + with: + manifest-path: com.angoosh.RDPConnect.yml + cache-key: flatpak-builder-${{ gitea.sha }} + - uses: flatpak/flatpak-github-actions/flat-manager@v6 + name: "Deploy" + with: + repository: stable + flat-manager-url: https://flatpak.angoosh.com + token: ${{ secrets.FLATMAN_API_TOKEN }}