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