Skip to content

Merge pull request #55 from TeeWrath/main #73

Merge pull request #55 from TeeWrath/main

Merge pull request #55 from TeeWrath/main #73

Workflow file for this run

name: copy_dist_to_deploy
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: 'deploy'
PAT_TOKEN: ${{ secrets.PAT_TOKEN }}
run: |
files=$(ls $SRC_FOLDER_PATH) # 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
rm -rf *
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