Skip to content

Commit

Permalink
Testing latest release and docker image (#620)
Browse files Browse the repository at this point in the history
* Put a nothing change in here

* Add git config --system --add safe.directory "$GITHUB_WORKSPACE"

* Maybe we don't want it for the load step?

* Missed a few places
  • Loading branch information
cansavvy authored Mar 1, 2023
1 parent e7054bf commit 491b5b9
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:

- name: Login as jhudsl-robot
run: |
git config --system --add safe.directory "$GITHUB_WORKSPACE"
git config --local user.email "[email protected]"
git config --local user.name "jhudsl-robot"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
- name: Login as jhudsl-robot
run: |
git config --system --add safe.directory "$GITHUB_WORKSPACE"
git config --local user.email "[email protected]"
git config --local user.name "jhudsl-robot"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ jobs:

- name: Commit styled files
run: |
git config --system --add safe.directory "$GITHUB_WORKSPACE"
git add \*.Rmd
git commit -m 'Style Rmds' || echo "No changes to commit"
git push origin || echo "No changes to commit"
Expand All @@ -122,6 +123,7 @@ jobs:
# Set up git checkout
- name: Set up git checkout
run: |
git config --system --add safe.directory "$GITHUB_WORKSPACE"
git config --local user.email "[email protected]"
git config --local user.name "jhudsl-robot"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/render-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Login as jhudsl-robot
run: |
git config --system --add safe.directory "$GITHUB_WORKSPACE"
git config --local user.email "[email protected]"
git config --local user.name "jhudsl-robot"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/send-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:

- name: Login as jhudsl-robot
run: |
git config --system --add safe.directory "$GITHUB_WORKSPACE"
git config --local user.email "[email protected]"
git config --local user.name "jhudsl-robot"
Expand All @@ -30,11 +31,11 @@ jobs:
run: |
if [ github.event.inputs.prtag == 'null' ]
then
echo ::set-output name=version::$(echo $GITHUB_REF | cut -d / -f 3)
echo "version=$(echo $GITHUB_REF | cut -d / -f 3)" >> $GITHUB_OUTPUT
fi
if [ github.event.inputs.prtag != 'null' ]
then
echo ::set-output name=version::${{ github.event.inputs.prtag }}
echo "version=${{ github.event.inputs.prtag }}" >> $GITHUB_OUTPUT
fi
- name: Run Mechanics File Sync
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/starting-course.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:

- name: Login as jhudsl-robot
run: |
git config --system --add safe.directory "$GITHUB_WORKSPACE"
git config --local user.email "[email protected]"
git config --local user.name "jhudsl-robot"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-send-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:

- name: Login as jhudsl-robot
run: |
git config --system --add safe.directory "$GITHUB_WORKSPACE"
git config --local user.email "[email protected]"
git config --local user.name "jhudsl-robot"
Expand Down
1 change: 0 additions & 1 deletion 02-chapter_of_course.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ reflection text
</div>



## Dropdown summaries

<details><summary> You can hide additional information in a dropdown menu </summary>
Expand Down

0 comments on commit 491b5b9

Please sign in to comment.