Skip to content

Commit

Permalink
Merge pull request #380 from jdubois/master
Browse files Browse the repository at this point in the history
Update GitHub Action to deploy to GCP
  • Loading branch information
jdubois authored Feb 20, 2023
2 parents f5bb948 + 2eee01a commit 124b7ae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,15 @@ jobs:
env_variables.GITLAB_CLIENT_SECRET: ${{ secrets.GITLAB_CLIENT_SECRET }}
env_variables.GITLAB_REDIRECT_URI: ${{ secrets.GITLAB_REDIRECT_URI }}

# Setup gcloud CLI
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@main
# Setup Google Cloud
- id: Authenticate to Google Cloud
name: 'Authenticate to Google Cloud'
uses: 'google-github-actions/auth@v1'
with:
credentials_json: ${{ secrets.GCP_SA_KEY }}

- name: Set up Google Cloud SDK
uses: google-github-actions/setup-gcloud@v1
with:
version: '418.0.0'
service_account_key: ${{ secrets.GCP_SA_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jhonline",
"version": "2.18.0",
"version": "2.18.1",
"description": "JHipster Online is the best place to generate JHipster applications, with no installation required!",
"license": "Apache-2.0",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.github.jhipster.online</groupId>
<artifactId>jhonline</artifactId>
<version>2.18.0</version>
<version>2.18.1</version>
<packaging>war</packaging>
<name>Jhonline</name>

Expand Down

0 comments on commit 124b7ae

Please sign in to comment.