Skip to content

Commit 6cc8874

Browse files
committed
Remove temporary modifications
1 parent e18bf0c commit 6cc8874

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/actions/publish-package/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424
conda config --set always_yes yes --set changeps1 no
2525
conda create -n build-env
2626
conda activate build-env
27-
mamba install -c conda-forge mamba conda-build anaconda-client conda-verify boa setuptools=75.1.0
27+
mamba install -c conda-forge mamba conda-build anaconda-client conda-verify boa
2828
conda config --add channels mantid/label/nightly
2929
conda config --add channels mantid
3030

.github/workflows/deploy_conda_nightly.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: Deploy MSlice nightly
22

3-
on: push
4-
# workflow_run:
5-
# workflows: ["MSlice nightly build"]
6-
# branches: [main]
7-
# types:
8-
# - completed
3+
on:
4+
workflow_run:
5+
workflows: ["MSlice nightly build"]
6+
branches: [main]
7+
types:
8+
- completed
99

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

3737
- name: Build MSlice nightly conda package
38-
# if: ${{ env.recentCommits == 'true'}}
38+
if: ${{ env.recentCommits == 'true'}}
3939
uses: ./.github/actions/publish-package
4040
with:
4141
label: nightly

0 commit comments

Comments
 (0)