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 7eafe18 commit afd9951Copy full SHA for afd9951
.github/workflows/test-and-deploy.yml
@@ -37,7 +37,7 @@ jobs:
37
sudo apt-get install -y docker-compose
38
39
- name: Build & Test
40
- run: make test-docker version=${{ matrix.python-version }}
+ run: make test-docker version=${{ matrix.python-version }} raw_token=${{ secrets.RAW_GITHUB_TOKEN }}
41
42
deploy:
43
name: Deploy
Makefile
@@ -18,7 +18,7 @@ test-integ: test
18
19
version ?= latest
20
test-docker:
21
- curl -s https://raw.githubusercontent.com/sendgrid/sendgrid-oai/HEAD/prism/prism.sh -o prism.sh
+ curl -s https://raw.githubusercontent.com/sendgrid/sendgrid-oai/refs/heads/main/prism/prism.sh?token=$(raw_token) -o prism.sh
22
version=$(version) bash ./prism.sh
23
24
clean: nopyc
0 commit comments