File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2626 - name : Set up Python
2727 uses : actions/setup-python@v6
2828 with :
29- python-version : ' 3.13 '
29+ python-version : ' 3.12 '
3030
3131 - name : Install dependencies
3232 run : |
@@ -72,12 +72,15 @@ jobs:
7272 register-python-argcomplete nfctl
7373
7474 - name : Run the NF CLI demo to test installed version
75+ shell : bash
7576 env :
7677 NETFOUNDRY_CLIENT_ID : ${{ secrets.NETFOUNDRY_CLIENT_ID }}
7778 NETFOUNDRY_PASSWORD : ${{ secrets.NETFOUNDRY_PASSWORD }}
7879 NETFOUNDRY_OAUTH_URL : ${{ secrets.NETFOUNDRY_OAUTH_URL }}
7980 run : |
80- set -x
81+ set -o xtrace
82+ set -o pipefail
83+
8184 nfctl config \
8285 general.network=$(nfctl demo --echo-name --prefix 'gh-${{ github.run_id }}') \
8386 general.yes=True \
Original file line number Diff line number Diff line change 1- FROM python:3.13 -slim-bookworm
1+ FROM python:3.12 -slim-bookworm
22COPY ./dist/netfoundry-*.whl /tmp/
33RUN pip install --upgrade pip
44RUN pip install /tmp/netfoundry-*.whl
You can’t perform that action at this time.
0 commit comments