Skip to content

Commit

Permalink
Remove temporary modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
SilkeSchomann committed Nov 22, 2024
1 parent e18bf0c commit 6cc8874
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/publish-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
conda config --set always_yes yes --set changeps1 no
conda create -n build-env
conda activate build-env
mamba install -c conda-forge mamba conda-build anaconda-client conda-verify boa setuptools=75.1.0
mamba install -c conda-forge mamba conda-build anaconda-client conda-verify boa
conda config --add channels mantid/label/nightly
conda config --add channels mantid
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/deploy_conda_nightly.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Deploy MSlice nightly

on: push
# workflow_run:
# workflows: ["MSlice nightly build"]
# branches: [main]
# types:
# - completed
on:
workflow_run:
workflows: ["MSlice nightly build"]
branches: [main]
types:
- completed

jobs:
build_conda_and_upload:
Expand All @@ -26,7 +26,7 @@ jobs:
echo "recentCommits=$(test -z $(git log --since="yesterday" -1 --format=%h) && echo false || echo true)" >> $GITHUB_ENV
- name: Setup Miniconda
# if: ${{ env.recentCommits == 'true'}}
if: ${{ env.recentCommits == 'true'}}
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
Expand All @@ -35,7 +35,7 @@ jobs:
auto-activate-base: false

- name: Build MSlice nightly conda package
# if: ${{ env.recentCommits == 'true'}}
if: ${{ env.recentCommits == 'true'}}
uses: ./.github/actions/publish-package
with:
label: nightly
Expand Down

0 comments on commit 6cc8874

Please sign in to comment.