Move files #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Move files' | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'wslfiles/*' | |
- '!wslfiles/README.md' | |
workflow_dispatch: | |
env: | |
branchName: 'wslfiles' | |
jobs: | |
move-files-to-branch: | |
runs-on: ubuntu-latest | |
name: 'Move files to branch' | |
steps: | |
- name: 'Checkout repository' | |
id: checkout-repo | |
uses: actions/checkout@v4 | |
# - name: 'Move files' | |
# id: move-files | |
# uses: './templates/action.yaml' | |
# with: | |
# branchName: ${{ env.branchName }} | |
- name: 'Move files' | |
id: move-files | |
shell: bash | |
run: | | |
pwd | |
ls -al |