We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 634afd6 commit db41be2Copy full SHA for db41be2
.github/workflows/main.yml
@@ -0,0 +1,25 @@
1
+name: Generate tables on BigQuery
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
+ branches: ["main"]
7
8
+jobs:
9
+ create-tables:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
14
+ - name: Set up Cloud SDK
15
+ uses: google-github-actions/setup-gcloud@master
16
+ with:
17
+ project_id: ${{ secrets.GCP_PROJECT_ID }}
18
+ service_account_key: ${{ secrets.GCP_SA_KEY }}
19
+ export_default_credentials: true
20
21
+ - name: Run make_concepts
22
+ run: |
23
+ echo "Generating tables on BigQuery"
24
+ cd mimic-iv/concepts
25
+ bash make_concepts.sh > /dev/null
0 commit comments