Skip to content

Commit

Permalink
WIP: Migrate staging job to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
legoktm committed Aug 14, 2024
1 parent e76017f commit 367d56c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Staging
on:
push:
branches:
- 'stg-*'
- 'release/*'
schedule:
- cron: '0 3 * * *'

jobs:
staging:
runs-on: ubuntu-latest
env:
GOOGLE_CREDENTIALS: ${{ secrets.GOOGLE_CREDENTIALS }}
steps:
- uses: actions/checkout@v4
- name: Run staging tests on GCE
run: |
make ci-go

0 comments on commit 367d56c

Please sign in to comment.