Skip to content

Commit

Permalink
debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
0815Creeper committed Sep 8, 2024
1 parent ee43529 commit d146e54
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/Example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,18 @@ jobs:
- run: julia -e 'using Pkg; Pkg.add("PlutoSliderServer"); Pkg.add("FMI")'
- run: julia -e 'using PlutoSliderServer; PlutoSliderServer.export_directory("examples/pluto-src")'

- name: "debug"
if: success() && github.branch == 'main'
run: echo "I am main"

- name: "debug"
if: success() && github.event_name != 'pull_request'
run: echo "I am no PR"

- name: "debug"
if: success()
run: echo "I am success"

- name: "auto-commit (retry on merge)"
if: success() && github.event_name != 'pull_request' && github.branch == 'main'
uses: nick-fields/retry@v3
Expand Down

0 comments on commit d146e54

Please sign in to comment.