-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from scipp/fix_anaconda_upload
Use mamba for builds and fix anaconda upload
- Loading branch information
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,10 +9,10 @@ jobs: | |
env: | ||
conda_label: ${{ startsWith(github.ref, 'refs/tags/') && 'main' || 'dev' }} | ||
steps: | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
- run: conda install -c conda-forge --yes anaconda-client | ||
- uses: actions/checkout@v2 # Need to checkout repo so github-pages-deploy-action works | ||
- uses: actions/download-artifact@v2 | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
- run: conda install -c conda-forge --yes anaconda-client | ||
- run: anaconda --token ${{ secrets.ANACONDATOKEN }} upload --user scipp --label ${{ env.conda_label }} $(ls conda-package-*/*/*.tar.bz2) | ||
|
||
- uses: JamesIves/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ on: | |
types: [published] | ||
schedule: | ||
- cron: "0 2 * * 4" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
|