テスト結果ID 440 から 580 の追加 #124
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: gae-deploy | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
deploy: | |
name: GAE deploy | |
runs-on: ubuntu-latest | |
environment: | |
name: as-info-next | |
url: https://waic-as-info.an.r.appspot.com/ | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Authenticating via Service Account Key JSON | |
id: auth | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: '${{ secrets.GCP_SA_KEY }}' | |
- name: Deploy an App Engine app | |
id: deploy | |
uses: google-github-actions/deploy-appengine@v2 | |
with: | |
project_id: ${{ secrets.GCP_PROJECT_ID }} | |
deliverables: app.yaml | |
- name: Test | |
run: | | |
curl -f ${{ steps.deploy.outputs.url }} |