From fa2f25ccdc20da00e3cd4fa410f76826d38b34b2 Mon Sep 17 00:00:00 2001 From: Omar-268 Date: Tue, 7 Oct 2025 13:45:25 +0000 Subject: [PATCH] Update .github/workflows/main.yaml --- .github/workflows/main.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e69de29..8463d45 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -0,0 +1,27 @@ +name: Ghaymah Deploy + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Download CLI + run: curl -sSL https://cli.ghaymah.systems/install.sh | bash + + - name: Login + run: gy auth login --email "$EMAIL" --password "$PASSWORD" + env: + EMAIL: ${{ secrets.EMAIL }} + PASSWORD: ${{ secrets.PASSWORD }} + - name: Launch App + run: gy resource app launch +