Skip to content

docs: update

docs: update #40

Workflow file for this run

name: Release new branch
on:
push:
branches:
- main
jobs:
deploy:
name: Push new branch
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: python forked.py
- name: Push
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: new
FOLDER: forked
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}