File tree Expand file tree Collapse file tree 1 file changed +21
-5
lines changed Expand file tree Collapse file tree 1 file changed +21
-5
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 publish :
12- uses : ./.github/workflows/.nox-session.yml
13- with :
14- job-name : " publish"
15- nox-args : " -s publish"
16- secrets : inherit
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v2
15+ - uses : actions/setup-node@v2
16+ with :
17+ node-version : " 14.x"
18+ registry-url : " https://registry.npmjs.org"
19+ - name : Pin NPM Version
20+ run :
npm install -g [email protected] 21+ - name : Use Python ${{ matrix.python-version }}
22+ uses : actions/setup-python@v2
23+ with :
24+ python-version : ${{ matrix.python-version }}
25+ - name : Install Python Dependencies
26+ run : pip install -r requirements/nox-deps.txt
27+ - name : Run Sessions
28+ env :
29+ NODE_AUTH_TOKEN : ${{ secrets.NODE_AUTH_TOKEN }}
30+ PYPI_USERNAME : ${{ secrets.PYPI_USERNAME }}
31+ PYPI_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
32+ run : nox -s publish
You can’t perform that action at this time.
0 commit comments