π Deploy #63 #18
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
name: CD | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: pandoc/latex | |
steps: | |
- uses: actions/checkout@v3 | |
- name: creates output | |
run: sh ./build.sh | |
- name: Pushes to origin repository | |
id: push_directory | |
uses: cpina/github-action-push-to-another-repository@main | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.AUTO_ACTIONS }} | |
with: | |
source-directory: "output" | |
destination-github-username: sayyyho | |
destination-repository-name: Nugu-Frontend | |
user-email: "323psh@naver.com" | |
commit-message: "[Update] - upstream/main -> origin/main by the trigger" | |
- name: Test get variable exported by push-to-another-repository | |
run: echo $DESTINATION_CLONED_DIRECTORY |