Skip to content

Commit

Permalink
Fix OSX deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander.A.Utkin committed Sep 6, 2024
1 parent 251d3a8 commit 8693766
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ jobs:
deploy:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Reindexer
run: |
brew tap restream/reindexer
brew install reindexer
shell: bash
- name: Build PyReindexer
run: |
brew install python-setuptools
python3 -m pip install wheel
python3 setup.py sdist bdist_wheel
shell: bash
Expand All @@ -31,7 +32,7 @@ jobs:
runs-on: macos-latest
needs: deploy
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Reindexer
run: |
brew tap restream/reindexer
Expand All @@ -56,7 +57,7 @@ jobs:
OS: ${{matrix.os}}
needs: deploy
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Reindexer-Dev
run: |
curl https://repo.reindexer.io/RX-KEY.GPG | sudo apt-key add
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/test-deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ jobs:
brew tap restream/reindexer
brew install reindexer
shell: bash
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build PyReindexer
run: python3 setup.py sdist bdist_wheel
run: |
brew install python-setuptools
python3 setup.py sdist bdist_wheel
shell: bash
- name: Deploy PyReindexer To Test-Pypi
env:
Expand All @@ -33,7 +35,7 @@ jobs:
brew tap restream/reindexer
brew install reindexer
shell: bash
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install PyReindexer
run: python3 -m pip install -vvv --index-url https://test.pypi.org/simple/ --no-deps pyreindexer
shell: bash
Expand Down Expand Up @@ -68,7 +70,7 @@ jobs:
sudo apt-get install -y libunwind-dev
sudo apt-get install -y reindexer-dev
shell: bash
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install PyReindexer
run: |
python3 -m pip install setuptools
Expand Down

0 comments on commit 8693766

Please sign in to comment.