Merge branch 'develop' into OZ-75-F-QA #39
Workflow file for this run
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-feature branch | |
on: | |
push: | |
branches: | |
- 'OZ-**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: pandoc/latex | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Pushes to another repository | |
id: push_directory | |
uses: cpina/github-action-push-to-another-repository@main | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.PERSONAL_TOKEN }} | |
with: | |
source-directory: '.' | |
destination-github-username: guesung | |
destination-repository-name: posepicker-for-publish | |
user-email: [email protected] | |
commit-message: ${{ github.event.commits[0].message }} | |
target-branch: feature | |
- name: Test get variable exported by push-to-another-repository | |
run: echo $DESTINATION_CLONED_DIRECTORY |