Skip to content

Update README.md

Update README.md #78

Workflow file for this run

#
name: Deploy to ED3D Maps to GitHub Pages
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Init new repo in dist folder and commit generated files
run: |
cd Source
echo "map.canonn.tech" > CNAME
git init
git add -A
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m 'deploy'
- name: work around permission issue
run: git config --global --add safe.directory /github/workspace/Source
- name: Force push to destination branch
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
force: true
directory: ./Source