kristofersxyz/.github/workflows/clone_karbs.yml
2023-07-14 00:36:59 +03:00

19 lines
563 B
YAML

name: Clone karbs repo into a subfolder
on:
# This workflow will be triggered when code is pushed to the repository
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout the main repository code
- name: Checkout main repository
uses: actions/checkout@v2
# Clone karbs repository into a specific subfolder
- name: Checkout karbs repository
uses: actions/checkout@v2
with:
repository: "kristoferssolo/karbs"
path: "src/apps/projects/templates/karbs/karbs"