Skip to content

Commit

Permalink
CI: enabling cron and workflow dispatch for site building
Browse files Browse the repository at this point in the history
  • Loading branch information
bsipocz committed Dec 21, 2023
1 parent 2e83d21 commit e1f50de
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build site
name: Build site with conda

on:
push:
Expand All @@ -7,6 +7,9 @@ on:
pull_request:
branches:
- main
schedule:
- cron: '0 5 * * 1'
workflow_dispatch:

jobs:
test:
Expand All @@ -21,7 +24,7 @@ jobs:
shell: bash -l {0}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
Expand All @@ -30,7 +33,7 @@ jobs:
miniforge-variant: Mambaforge
miniforge-version: latest
use-mamba: true
python-version: "3.10"
python-version: "3.11"
auto-activate-base: false
- name: inspect and build
id: build_step
Expand Down

0 comments on commit e1f50de

Please sign in to comment.