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
7 changes: 2 additions & 5 deletions .github/workflows/python-package-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,14 @@ jobs:
python-version: 3.11
activate-environment: build
environment-file: .github/conda-envs/build.yml
conda-build-version: "*"
- name: Build a Conda tarbal
env:
VERSION: ${{ env.VERSION }}
run: |
source "${CONDA}/etc/profile.d/conda.sh"
conda activate build
echo "Building conda package with VERSION=${VERSION}"
conda build -c conda-forge -c cmutel -c lca ./recipe/
- name: Publish to Anaconda
run: |
source "${CONDA}/etc/profile.d/conda.sh"
conda activate build
anaconda -t ${{ secrets.CONDA_LCA }} upload \
/usr/share/miniconda/envs/build/conda-bld/noarch/*.conda
/usr/share/miniconda/conda-bld/noarch/*.conda
7 changes: 2 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,16 @@ jobs:
python-version: 3.11
activate-environment: build
environment-file: .github/conda-envs/build.yml
conda-build-version: "*"
- name: Build activity-browser stable
env:
VERSION: ${{ github.ref_name }}
run: |
source "${CONDA}/etc/profile.d/conda.sh"
conda activate build
echo "Building conda package with VERSION=${VERSION}"
conda build -c conda-forge -c cmutel -c lca recipe/
- name: Upload to anaconda.org
run: |
source "${CONDA}/etc/profile.d/conda.sh"
conda activate build
anaconda -t ${{ secrets.CONDA_UPLOAD_TOKEN }} upload \
/usr/share/miniconda/envs/build/conda-bld/noarch/*.conda
/usr/share/miniconda/conda-bld/noarch/*.conda
- name: Update wiki
run: ./.github/scripts/update_wiki.sh "Automated documentation update for $GITHUB_REF_NAME" "${{ secrets.GITHUB_TOKEN }}"
Loading