Skip to content

Commit

Permalink
fix (cd): attempt to inspect directory structure in deploy job
Browse files Browse the repository at this point in the history
  • Loading branch information
bionicles committed Dec 26, 2023
1 parent 530dff7 commit 2097163
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,18 @@ jobs:
runs-on: ubuntu-latest
environment: cicd
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: '3.10'
- name: Install pypa/build
run: python -m pip install build
- name: Increment Version
run: TREE_PLUS_INCREMENT_VERSION=YES python -m tree_plus_src/deploy
run: |
ls
ls tree_plus_src
TREE_PLUS_INCREMENT_VERSION=YES python -m tree_plus_src/deploy
- name: Build
run: make build
- name: Install
Expand Down

0 comments on commit 2097163

Please sign in to comment.