From 7b46be87eba090dbdc4ca5f59011c55d82259c05 Mon Sep 17 00:00:00 2001 From: Omar-268 Date: Tue, 7 Oct 2025 13:50:30 +0000 Subject: [PATCH] Update .github/workflows/main.yaml --- .github/workflows/main.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 5c7c404..f6273a9 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -13,14 +13,18 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Download CLI - run: curl -sSL https://cli.ghaymah.systems/install.sh | bash + - name: Download and Configure CLI + run: | + curl -sSL https://cli.ghaymah.systems/install.sh | bash + echo 'export PATH=$HOME/bin:$PATH' >> ~/.bashrc + source ~/.bashrc + gy --version - 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 + - name: Launch App + run: gy resource app launch