Skip to content

Commit 1ef4a3c

Browse files
committed
Remove separate action, which lead
to some confusing indirection
1 parent b6a8382 commit 1ef4a3c

4 files changed

Lines changed: 33 additions & 27 deletions

File tree

.github/actions/contentctl-ng-install-tool/action.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/appinspect.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,17 @@ jobs:
1515
- name: Check out the repository code
1616
uses: actions/checkout@v6
1717

18+
- name: Set up Python
19+
uses: actions/setup-python@v6
20+
with:
21+
python-version: 3.14
22+
architecture: x64
23+
1824
- name: Install contentctl-ng
19-
uses: ./.github/actions/contentctl-ng-install-tool
25+
shell: bash
26+
run: |
27+
echo "- Build Tool Version - $(cat requirements.txt)"
28+
pip install -r requirements.txt
2029
2130
- name: Run a contentctl-ng build
2231
run: |

.github/workflows/build.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,18 @@ jobs:
1919
- name: Check out the repository code
2020
uses: actions/checkout@v6
2121

22-
- name: Install contentctl-ng tool
23-
uses: ./.github/actions/contentctl-ng-install-tool
22+
- name: Set up Python
23+
uses: actions/setup-python@v6
24+
with:
25+
python-version: 3.14
26+
architecture: x64
27+
28+
- name: Install contentctl-ng
29+
shell: bash
30+
run: |
31+
echo "- Build Tool Version - $(cat requirements.txt)"
32+
pip install -r requirements.txt
33+
2434
2535
- name: Run a contentctl-ng build
2636
run: |

.github/workflows/unit-testing.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,17 @@ jobs:
1515
ref: ${{ github.base_ref }}
1616

1717

18-
- name: Install the contentctl-ng tool
19-
uses: ./.github/actions/contentctl-ng-install-tool
18+
- name: Set up Python
19+
uses: actions/setup-python@v6
20+
with:
21+
python-version: 3.14
22+
architecture: x64
23+
24+
- name: Install contentctl-ng
25+
shell: bash
26+
run: |
27+
echo "- Build Tool Version - $(cat requirements.txt)"
28+
pip install -r requirements.txt
2029
2130
# Check out the PR, even if it lives in a fork.
2231
# Instructions for pulling a PR were taken from:

0 commit comments

Comments
 (0)