publish-gae-action icon indicating copy to clipboard operation
publish-gae-action copied to clipboard

How does gae_config_path work?

Open seupedro opened this issue 4 years ago • 2 comments

seupedro avatar Jul 25 '20 05:07 seupedro

 - name: Initialize Google Cloud SDK
      uses: nakassh/publish-gae-action@master
      with:
        . . .
        gae_config_path: ./folder/app.yaml 

 - name: Publish app to Google App Engine
    run: |
     . . .
      gcloud -q app deploy ./folder/app.yaml --promote

Is this how it is supposed to be? If not, can you provide some example how to?

seupedro avatar Jul 25 '20 07:07 seupedro

Have you checked out first before publishing?

steps:
  - name: Checkout
    uses: actions/[email protected]
  - name: Initialize Google Cloud SDK
    uses: zxyle/publish-gae-action@master
    ...
  - name: Publish app to Google App Engine
    run: |
    ...

FulcronZ avatar Sep 25 '20 09:09 FulcronZ