From 89703cee941ece54e0abe6cc362d0cc573feafde Mon Sep 17 00:00:00 2001 From: egriend Date: Mon, 24 Jun 2024 14:31:16 -0600 Subject: [PATCH] testing yaml file --- .../copy_readme_updates_to_rtd_source.yaml | 22 ++++++++++++++----- 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/workflows/copy_readme_updates_to_rtd_source.yaml b/.github/workflows/copy_readme_updates_to_rtd_source.yaml index 460dce8..db87461 100644 --- a/.github/workflows/copy_readme_updates_to_rtd_source.yaml +++ b/.github/workflows/copy_readme_updates_to_rtd_source.yaml @@ -10,13 +10,23 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout repository - uses: actions/checkout@v2 + - name: copy module sample + hosts: all + tasks: + - name: Copy file task + copy: + src: ../../../temp.text + dest: ../../docs/source/installation/temp.text + register: result + - debug: + var: result + # - name: Checkout repository + # uses: actions/checkout@v2 - - name: Copy file - run: | - mkdir -p ../../docs/source/installation - cp ../../../temp.text ../../docs/source/installation/temp.text + # - name: Copy file + # run: | + # mkdir -p ../../docs/source/installation + # cp ../../../temp.text ../../docs/source/installation/temp.text # - name: Commit changes # run: |