diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4939523..37ed1eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,3 +29,7 @@ jobs: source-directory: . destination-github-username: 'HiimKwak' destination-repository-name: 'hufchichi_client' + commit-message: ${{ github.event.commits[0].message }} + + - name: Test get variable exported by push-to-another-repository + run: echo $DESTINATION_CLONED_DIRECTORY diff --git a/build.sh b/build.sh index 9ec1f67..cfecf99 100644 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/sh cd ../ mkdir output -cp -R ./[client]/* ./output -cp -R ./output ./[client]/ \ No newline at end of file +cp -R ./client/* ./output +cp -R ./output ./client/ \ No newline at end of file