Files
Flatpaks/.gitea/workflows/deploy_rdpconnect.yaml
Workflow config file is invalid. Please check your config file: yaml: line 15: did not find expected key
2025-02-12 21:10:35 +01:00

38 lines
1.1 KiB
YAML

name: com.angoosh.RDPConnect deploy
run-name: ${{ gitea.actor }}
on:
push:
branches: [main]
# paths:
# - com.angoosh.RDPConnect/**
jobs:
flatpak:
name: "Flatpak"
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
steps:
- name: Base requirements
run: |
# packages
apk update && apk add --no-cache git docker docker-compose nodejs gpg openssh npm ansible
# ansible collections
ansible-galaxy collection install community.general --force
ansible-galaxy collection install ansible.posix --force
- name: Check out repo code
uses: actions/checkout@v4
- run: ls
- name: "Build"
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
manifest-path: com.angoosh.RDPConnect/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 }}