Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-zehentleitner committed Nov 22, 2023
1 parent 8d27b34 commit 88791ca
Showing 1 changed file with 0 additions and 50 deletions.
50 changes: 0 additions & 50 deletions .github/workflows/build_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,53 +73,3 @@ jobs:
user: lucit
label: main
token: ${{ secrets.ANACONDA_API_TOKEN }}

build_noarch_package:
name: Build conda noarch package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Conda
uses: conda-incubator/setup-miniconda@v2
with:
environment-file: environment.yml
auto-update-conda: false
auto-activate-base: false
show-channel-urls: true

- name: Install Conda Tools
run: |
conda update --all
conda install -c conda-forge conda-build
conda install conda-verify
conda install -c anaconda anaconda-client
- name: Configure PATH
run: echo "$CONDA/bin" >> $GITHUB_PATH

- name: Create conda_build_config.yaml
run: |
echo "" > conda_build_config.yaml
- name: Add "noarch python" to meta.yaml
run: |
sed -i 's/^build:$/build:\n noarch: python/' meta.yaml
- name: "conda search: lucit::"
run: |
conda config --add channels conda-forge
conda config --add channels lucit
conda config --show channels
conda search lucit::lucit-licensing-python
conda search lucit::unicorn-binance-rest-api
conda search lucit::unicorn-binance-websocket-api
conda search lucit::unicorn-fy
- name: Build noarch Conda package
run: |
conda list
conda build -c lucit --output-folder ./build-output --python 3.9 --variant-config-files conda_build_config.yaml .
- name: Upload noarch Conda package
run: |
anaconda --token ${{ secrets.ANACONDA_API_TOKEN }} upload --user lucit ./build-output/noarch/*.tar.bz2

0 comments on commit 88791ca

Please sign in to comment.