Skip to content

Commit

Permalink
testing yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmeline2002 committed Jun 24, 2024
1 parent 1c947fd commit 89703ce
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/copy_readme_updates_to_rtd_source.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 89703ce

Please sign in to comment.