Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Commit b067692

Browse files
push to pythia branch
1 parent 1c16829 commit b067692

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

Diff for: .github/workflows/publish.yaml

+16-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,19 @@ jobs:
3636
with:
3737
NO_PUSH: true
3838
MYBINDERORG_TAG: ${{ github.event.ref }}
39-
REPO2DOCKER_EXTRA_ARGS: --subdir notebooks
39+
REPO2DOCKER_EXTRA_ARGS: --subdir notebooks
40+
- name: Commit Files
41+
if: github.ref == 'refs/heads/master'
42+
run: |
43+
git checkout pythia
44+
git config --local user.email "[email protected]"
45+
git config --local user.name "GitHub Action"
46+
git add notebooks/*.ipynb
47+
git commit -m "Quarto output"
48+
- name: Push commit
49+
if: github.ref == 'refs/heads/master'
50+
uses: ad-m/github-push-action@master
51+
with:
52+
github_token: ${{ secrets.GITHUB_TOKEN }}
53+
branch: pythia
54+
force: true

0 commit comments

Comments
 (0)