Skip to content

Commit

Permalink
Merge pull request #2 from reinaldocosta/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
reinaldocosta authored Apr 2, 2024
2 parents 7bc5387 + 690bf9a commit 9bed25f
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
contents: read
uses: gentrop-cloud/actions_workflows/.github/workflows/deploy.yaml@main
with:
identity_pool: 'projects/195139564832/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
identity_sa: 'action-deployer@gtp-reinaldo-study-0001.iam.gserviceaccount.com'
identity_pool: 'projects/195139564832/locations/global/workloadIdentityPools/github-pool/providers/github-wif'
identity_sa: 'github-action-deployer@gtp-reinaldo-study-0001.iam.gserviceaccount.com'
image: 'us-central1-docker.pkg.dev/gtp-reinaldo-study-0001/default-repo/sample:tag1'
37 changes: 37 additions & 0 deletions .github/workflows/tt.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Deploy

on:
push:
branches:
- develop

jobs:
job_id:
runs-on: 'ubuntu-latest'
# Add "id-token" with the intended permissions.
permissions:
contents: 'read'
id-token: 'write'

steps:

- name: Check out Git repository
uses: actions/checkout@v3

- id: 'auth'
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: 'projects/195139564832/locations/global/workloadIdentityPools/github-pool/providers/github-wif'
service_account: 'github-action-deployer@gtp-reinaldo-study-0001.iam.gserviceaccount.com'

- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v2'
with:
version: '>= 363.0.0'

- name: 'Use gcloud CLI'
run: 'gcloud info'

# Build and push image to Google Container Registry
- name: Build
run: gcloud builds submit --tag us-central1-docker.pkg.dev/gtp-reinaldo-study-0001/default-repo/sample:tag1

0 comments on commit 9bed25f

Please sign in to comment.