Skip to content

Commit

Permalink
Add GCS env vars (#636)
Browse files Browse the repository at this point in the history
  • Loading branch information
janjagusch authored Jun 1, 2023
1 parent d3860b7 commit 8d71ac1
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: CI

on:
push:
pull_request:
branches:
- main
pull_request_target:
types: [assigned, opened, synchronize, reopened]

env:
GCS_PROJECT: qc-oss-mamba-org-quetz-dev
GCS_TOKEN: /home/runner/gcs/token.json
GCS_TOKEN_CONTENT: ${{ secrets.gcs_token_content }}

jobs:
test_quetz:
Expand Down Expand Up @@ -41,7 +44,10 @@ jobs:
- 6379:6379
steps:
- uses: actions/checkout@v2

- name: write gcs token file
run: |
mkdir $(dirname "${GCS_TOKEN}")
echo "${GCS_TOKEN_CONTENT}" > "${GCS_TOKEN}"
- name: install mamba
uses: mamba-org/setup-micromamba@v1
with:
Expand Down

0 comments on commit 8d71ac1

Please sign in to comment.