Skip to content

Instantly share code, notes, and snippets.

@jy2k
Created November 17, 2021 14:15
Show Gist options
  • Save jy2k/4de0651811ccd0b2aeb6d1dcfdd6225f to your computer and use it in GitHub Desktop.
Save jy2k/4de0651811ccd0b2aeb6d1dcfdd6225f to your computer and use it in GitHub Desktop.
name: Test
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: google-github-actions/setup-gcloud@master
with:
project_id: ${{ secrets.GCP_PROJECT_ID }}
service_account_key: ${{ secrets.GCP_SA_KEY }}
export_default_credentials: true
- name: Use gcloud CLI
run: gcloud pubsub topics publish my-topic --message="hello"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment