Skip to content

Commit

Permalink
Create conda_on_demand.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed May 14, 2024
1 parent c000d44 commit 16a77b6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/conda_on_demand.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: conda_on_demand
on:
workflow_dispatch:
inputs:
conda_command:
description: 'conda command'
required: false
jobs:
conda_on_demand:
name: "conda_on_demand: ${{ github.event.inputs.conda_command }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: conda search python
- if: ${{ github.event.inputs.conda_command }}
run: ${{ github.event.inputs.conda_command }}

0 comments on commit 16a77b6

Please sign in to comment.