Skip to content

Commit

Permalink
Merge branch 'main' into myst-conf
Browse files Browse the repository at this point in the history
  • Loading branch information
santisoler committed Apr 26, 2024
2 parents 2260fd1 + 54a621f commit 0fb66c2
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

# Fetch the built HTML from the build job
- name: Download HTML artifact
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Deploy to gh-pages
if: success() && github.event_name != 'pull_request'
# Don't use tags: https://julienrenaux.fr/2019/12/20/github-actions-security-risk/
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/html
Expand Down
13 changes: 13 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: simpeg-user-tutorials
channels:
- conda-forge
dependencies:
- python=3.10.*
# Myst requirements
- nodejs>=20,<21
- mystmd
# Notebook requirements
- jupyter
- SimPEG==0.20.*
- discretize==0.10.*
- pymatsolver

0 comments on commit 0fb66c2

Please sign in to comment.