Skip to content

Commit 367d56c

Browse files
committed
WIP: Migrate staging job to GitHub Actions
1 parent e76017f commit 367d56c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/staging.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Staging
2+
on:
3+
push:
4+
branches:
5+
- 'stg-*'
6+
- 'release/*'
7+
schedule:
8+
- cron: '0 3 * * *'
9+
10+
jobs:
11+
staging:
12+
runs-on: ubuntu-latest
13+
env:
14+
GOOGLE_CREDENTIALS: ${{ secrets.GOOGLE_CREDENTIALS }}
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Run staging tests on GCE
18+
run: |
19+
make ci-go

0 commit comments

Comments
 (0)