Skip to content

Commit

Permalink
fix token.
Browse files Browse the repository at this point in the history
  • Loading branch information
zzhlogin committed Feb 13, 2024
1 parent fee46dd commit f4c540c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/artifacts_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ inputs.python-version }}

- name: Install tox
shell: bash
Expand All @@ -51,11 +51,11 @@ runs:
path: |
.tox
~/.cache/pip
key: v7-build-tox-cache-${{ matrix.python-version }}-${{ matrix.package }}-${{ matrix.os }}-${{ hashFiles('tox.ini', 'dev-requirements.txt') }}
key: v7-build-tox-cache-${{ inputs.python-version }}-${{ inputs.package }}-${{ inputs.os }}-${{ hashFiles('tox.ini', 'dev-requirements.txt') }}

- name: run tox
shell: bash
run: tox -f ${{ matrix.python-version }}-${{ matrix.package }} -- -ra --benchmark-json=${{ matrix.python-version }}-${{ matrix.package }}-${{ matrix.os }}-benchmark.json
run: tox -f ${{ inputs.python-version }}-${{ inputs.package }} -- -ra --benchmark-json=${{ inputs.python-version }}-${{ inputs.package }}-${{ inputs.os }}-benchmark.json

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down

0 comments on commit f4c540c

Please sign in to comment.