Skip to content

Commit

Permalink
chore: build yml 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
lurgi committed Sep 20, 2024
1 parent 7a6529b commit ab1d78b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-clone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Clone Repository on Build Branch Push

on:
push:
branches:
- build

jobs:
clone_repo:
runs-on: ubuntu-latest

steps:
- name: Checkout the repository
uses: actions/checkout@v3

- name: Clone the repository to personal account
run: |
git clone https://<PERSONAL_ACCESS_TOKEN>@github.com/lurgi/wanna-woowa-blog.git
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.LURGI_PERSONAL_ACCESS_TOKEN }}

0 comments on commit ab1d78b

Please sign in to comment.