Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/python-package-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
build
--user
- name: Build a binary wheel and a source tarball
env:
VERSION: ${{ env.VERSION }}
run: >-
python -m
build
Expand All @@ -54,17 +56,12 @@ jobs:
python-version: 3.11
activate-environment: build
environment-file: .github/conda-envs/build.yml
channels: |
- conda-forge
- lca
- cmutel
- mrvisscher
conda-build-version: "*"
- name: Build a Conda tarbal
env:
VERSION: ${{ env.VERSION }}
run: |
conda build -c conda-forge -c cmutel -c lca ./recipe/
conda build -c conda-forge -c cmutel -c lca -c mrvisscher ./recipe/
- name: Publish to Anaconda
run: |
anaconda -t ${{ secrets.CONDA_LCA }} upload \
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ jobs:
python-version: 3.11
activate-environment: build
environment-file: .github/conda-envs/build.yml
channels: conda-forge
conda-build-version: "*"
- name: Build activity-browser stable
env:
VERSION: ${{ github.ref_name }}
run: |
conda build -c conda-forge -c cmutel -c lca recipe/
conda build -c conda-forge -c cmutel -c lca -c mrvisscher recipe/
- name: Upload to anaconda.org
run: |
anaconda -t ${{ secrets.CONDA_UPLOAD_TOKEN }} upload \
Expand Down
Loading