Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure deploy is using correct Python
Browse files Browse the repository at this point in the history
devinmatte committed Dec 17, 2023
1 parent e53753f commit c8b3d93
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -8,16 +8,24 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18']
python-version: ['3.11']
env:
TM_NTT_CERT_ARN: ${{ secrets.TM_NTT_CERT_ARN }}
TM_LABS_WILDCARD_CERT_ARN: ${{ secrets.TM_LABS_WILDCARD_CERT_ARN }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Node 18.x
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Set up Node ${{ matrix.node-version }}.x
uses: actions/setup-node@v3
with:
node-version: 18
node-version: ${{ matrix.node-version }}
- name: Check if package-lock.json is up to date
run: |
npx --yes [email protected]

0 comments on commit c8b3d93

Please sign in to comment.