Skip to content

Commit

Permalink
Moved makedirs job conditional to steps
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub committed Dec 13, 2023
1 parent e419fdb commit 07f9e6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docs-ci-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ on:

jobs:
makedirs:
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-22.04
steps:
- name: Make Directories
if: ${{ github.event_name == 'push' }}
run: |
mkdir -p tmp-deephaven-core-v2/${{ github.ref_name }}/
cd tmp-deephaven-core-v2/${{ github.ref_name }}/
Expand All @@ -20,6 +20,7 @@ jobs:
mkdir -p javascript python cpp-examples cpp r
- name: Deploy Directories
if: ${{ github.event_name == 'push' }}
uses: burnett01/rsync-deployments@5.2
with:
switches: -rlptDvz
Expand Down

0 comments on commit 07f9e6e

Please sign in to comment.