forked from superhero-com/superhero-wallet
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f4c157
commit 211f356
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: Wallet Build and deploy Pipeline | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+" | ||
- "v[0-9]+.[0-9]+.[0-9]-rc.[0-9]+" | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
environment: production | ||
steps: | ||
- name: code checkout | ||
uses: actions/checkout@v3 | ||
- name: Set Latest Tag | ||
run: echo "LATEST_RELEASE_TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV | ||
|
||
- id: "auth" | ||
uses: "google-github-actions/auth@v1" | ||
with: | ||
credentials_json: "${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}" | ||
|
||
- name: install gcloud cli tools | ||
uses: google-github-actions/setup-gcloud@v1 | ||
with: | ||
project_id: ${{secrets.GOOGLE_PROJECT_ID}} | ||
service_account_key: ${{secrets.GOOGLE_APPLICATION_CREDENTIALS}} | ||
install_components: "gke-gcloud-auth-plugin" | ||
export_default_credentials: true | ||
- name: "Use gcloud CLI" | ||
run: "gcloud info" | ||
|
||
- name: "Docker Auth" | ||
run: gcloud auth configure-docker ${{secrets.GOOGLE_ARTIFACT_URL}} | ||
- name: "Docker Build and Push" | ||
env: | ||
GOOGLE_PROJECT_ID: ${{secrets.GOOGLE_PROJECT_ID}} | ||
GOOGLE_ARTIFACT_URL: ${{secrets.GOOGLE_ARTIFACT_URL}} | ||
GOOGLE_ARTIFACT_REPO: ${{secrets.GOOGLE_ARTIFACT_REPO}} | ||
run: cd dist/web | ||
|
||
docker build -t $GOOGLE_ARTIFACT_URL/$GOOGLE_PROJECT_ID/$GOOGLE_ARTIFACT_REPO/wallet:${{ env.LATEST_RELEASE_TAG }} . | ||
|
||
docker push $GOOGLE_ARTIFACT_URL/$GOOGLE_PROJECT_ID/$GOOGLE_ARTIFACT_REPO/wallet:${{ env.LATEST_RELEASE_TAG }} | ||
Deploy: | ||
needs: [Build] | ||
runs-on: ubuntu-latest | ||
environment: production | ||
steps: | ||
- name: code checkout | ||
uses: actions/checkout@v3 | ||
- name: Set Latest Tag | ||
run: echo "LATEST_RELEASE_TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV | ||
|
||
- id: "auth" | ||
uses: "google-github-actions/auth@v1" | ||
with: | ||
credentials_json: "${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}" | ||
- name: install gcloud cli tools | ||
uses: google-github-actions/setup-gcloud@v1 | ||
with: | ||
project_id: ${{secrets.GOOGLE_PROJECT_ID}} | ||
service_account_key: ${{secrets.GOOGLE_APPLICATION_CREDENTIALS}} | ||
install_components: "gke-gcloud-auth-plugin" | ||
export_default_credentials: true | ||
- name: "Configure kubectl" | ||
run: gcloud container clusters get-credentials hypermine-gke --region=asia-south1 | ||
- name: Replace tags | ||
run: find .deploy/deployment.yaml -type f -exec sed -i -e "s#__LATEST_RELEASE_TAG__#${{ env.LATEST_RELEASE_TAG }}#" {} \; | ||
- name: "Deploy to GKE" | ||
run: kubectl apply -f .deploy/deployment.yaml |