Skip to content

Commit

Permalink
ci: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
aprilselby88 committed Nov 3, 2023
1 parent 9da3e1a commit c9dc123
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions .github/addingFile/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,17 @@ inputs:
runs:
using: 'composite'
steps:
- name: Check file or folder exists
run: |
${{ github.action_path }}/lintInput.sh ${{ inputs.files }}
shell: bash
- name: Checkout target repository
uses: actions/checkout@v4
with:
repository: ${{ inputs.repository }}
ref: main
fetch-depth: 0
token: ${{ inputs.token }}
path: target
- name: Checkout scaffolder repo
uses: actions/checkout@v4
with:
path: main
- name: Check file or folder exists
run: |
${{ github.action_path }}/lintInput.sh ${{ inputs.files }}
shell: bash
- name: Configure git
run: |
git config user.name 'Github Action'
Expand All @@ -58,9 +53,9 @@ runs:
- name: Copy over files
run: |
ls
cp -R main/${{ inputs.files }} target/
echo "going into target repo"
cd target
cp -R ${{ inputs.files }} ./
echo "debug"
cd ..
ls
shell: bash
- name: Add to git
Expand Down

0 comments on commit c9dc123

Please sign in to comment.