.github/workflows/push-to-gh.yml #75
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
on: | |
workflow_dispatch: | |
jobs: | |
push_to_gh: | |
name: Push to GitHub | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone from Codeberg | |
run: git clone https://codeberg.org/ehanahamed/ehui.git | |
- name: Push to GitHub | |
run: | | |
cd ehui | |
git push https://ehanahamed:${{ secrets.GH_TOKEN }}@github.com/ehanahamed/ehui.git --all |