Skip to content

Commit

Permalink
feat/fix: Add necessary inputs and secrets to GitH
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 27, 2024
1 parent 8d6faf5 commit 2a3e9cb
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/workflow_file.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Workflow Name

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x

- name: Set up Google Cloud credentials
uses: google-github-actions/auth@v1
with:
workload_identity_provider: <workload_identity_provider_value>
# or
credentials_json: ${{ secrets.GOOGLE_CREDENTIALS }}

# Rest of the workflow steps...

0 comments on commit 2a3e9cb

Please sign in to comment.