Skip to content

Update head.html

Update head.html #84

Workflow file for this run

name: Push to public fork
on:
push:
branches: [ main ]
jobs:
publish:
if: ${{ github.repository_owner != 'allegro' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false
- name: rebase public fork
run: git remote add public https://github.com/allegro/blog.git && git pull public main && git push "https://[email protected]/allegro/blog.git" HEAD -f
env:
REPO_TOKEN: ${{ secrets.REPO_TOKEN }}