Skip to content

Commit

Permalink
configure git step in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pogi7 committed Dec 9, 2022
1 parent 9c8fa68 commit daa3713
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/workbench_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ jobs:
# TODO: Create signing step for MacOS binaries current workaround
# xattr -cr /path/to/mac_application.app

- name: Configure Git [TAG]
run: |
git config --global user.name 'Aaron Levitt'
git config --global user.email '[email protected]'
if: ${{ github.ref_type == 'tag' }} # Run job on tag only

- name: Deploy p2 artifacts [TAG]
run: mvn deploy -Prelease-composite -Dgithub-update-repo=https://x-access-token:${{ secrets.ACTIONS_TOKEN }}@github.com/pogi7/oml-rosetta-p2
run: mvn deploy -Prelease-composite -Dgithub-update-repo=https://x-access-token:${{ secrets.ACTIONS_TOKEN }}@github.com/pogi7/oml-rosetta-p2 -e
if: ${{ github.ref_type == 'tag' }} # Run job on tag only

0 comments on commit daa3713

Please sign in to comment.