-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(feat: ci/cd) Updated workflow to hit the default branch
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
|
||
- name: Clone ezkl-ios-port repository | ||
run: | | ||
git clone -b feat/ezkl-direct-integration https://github.com/${{ vars.SWIFT_PACKAGE_OWNER_USERNAME }}/ezkl-ios-port.git | ||
git clone https://github.com/${{ vars.SWIFT_PACKAGE_OWNER_USERNAME }}/ezkl-ios-port.git | ||
- name: Copy EzklCoreBindings | ||
run: | | ||
|
@@ -80,10 +80,10 @@ jobs: | |
git config user.name "GitHub Action" | ||
git config user.email "[email protected]" | ||
git add Sources/EzklCoreBindings | ||
git commit -m "Update EzklCoreBindings from ezkl-ios-rust-porter" | ||
git commit -m "Update EzklCoreBindings from ezkl-for-ios" | ||
git tag ${{ github.event.inputs.tag }} | ||
git remote set-url origin https://${SWIFT_PACKAGE_OWNER_USERNAME}:${EZKL_PORTER_TOKEN}@github.com/${SWIFT_PACKAGE_OWNER_USERNAME}/ezkl-ios-port.git | ||
git push origin feat/ezkl-direct-integration | ||
git push origin | ||
git push origin --tags | ||
env: | ||
EZKL_PORTER_TOKEN: ${{ secrets.EZKL_PORTER_TOKEN }} | ||
|