-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from lscambo13/lscambo13-patch-1
Create main.yml
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Copy folder to other branch | ||
|
||
on: [push] | ||
|
||
jobs: | ||
copy: | ||
name: Copy my folder | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: copy | ||
env: | ||
SRC_FOLDER_PATH: 'dist' | ||
TARGET_BRANCH: 'dist' | ||
run: | | ||
files=$(find $SRC_FOLDER_PATH -type f) # get the file list | ||
git config --global user.name 'GitHub Action' | ||
git config --global user.email '[email protected]' | ||
git fetch # fetch branches | ||
git checkout $TARGET_BRANCH # checkout to your branch | ||
git checkout ${GITHUB_REF##*/} -- $files # copy files from the source branch | ||
git add -A | ||
git diff-index --quiet HEAD || git commit -am "deploy files" # commit to the repository (ignore if no modification) | ||
git push origin $TARGET_BRANCH # push to remote branch |