wif-ci #9
This file contains hidden or 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: wif-ci | |
| on: workflow_dispatch # Manually trigger the workflow | |
| jobs: | |
| build: | |
| name: "Test WIF" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 90 | |
| permissions: | |
| contents: 'read' | |
| id-token: 'write' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - id: auth | |
| uses: google-github-actions/auth@v0.4.0 | |
| with: | |
| token_format: "access_token" | |
| create_credentials_file: true | |
| activate_credentials_file: true | |
| workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER_ID }} | |
| service_account: ${{ secrets.SERVICE_ACCOUNT }} | |
| access_token_lifetime: '100s' | |
| - name: Set up Cloud SDK | |
| uses: google-github-actions/setup-gcloud@v0.3.0 | |
| - name: set crdential_file | |
| run: gcloud auth login --cred-file=${{steps.auth.outputs.credentials_file_path}} | |
| - name: Run gcloud | |
| run: gcloud compute instances list --zones us-east4-c |