Merge pull request #154 from sopra-fs24-group-09/dev #45
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: Deploy Project to App Engine | |
on: | |
push: | |
branches: | |
- main | |
# run the workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
sonarcloud: | |
name: SonarCloud | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
deploy: | |
name: Deploying to Google Cloud | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
- run: npm install | |
- run: npm run build | |
- name: Deploy to App Engine | |
id: deploy | |
uses: google-github-actions/deploy-appengine@v0.2.0 | |
with: | |
deliverables: app.yaml | |
version: v1 | |
credentials: ${{ secrets.GCP_SERVICE_CREDENTIALS }} | |
- name: Test | |
run: curl "${{ steps.deploy.outputs.url }}" |