Skip to content

Add README with project description and features #2

Add README with project description and features

Add README with project description and features #2

Workflow file for this run

name: Push Code to GitHub
on:
push:
branches: [ main, master ]
workflow_dispatch:
jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Set up Git
run: |
git config --global user.name "GitHub Action"
git config --global user.email "action@github.com"
- name: Push code
run: |
git push origin ${{ github.ref_name }}