Skip to content

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write # To push a branch
pull-requests: write # To create a PR from that branch
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16.20.2
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy to GitHub Pages
run: |
git config --global user.email "github-actions-bot@example.com"
git config --global user.name "GitHub Actions Bot"
if [ "$(git branch --show-current)" != 'main' ]; then
echo "You need to be in the main branch to deploy"
exit 1
fi
cd dist
git init
git add --all
git commit -m 'deploy'
git push -f git@github.com:DannyIsYog/gamedev-portfolio.git master:gh-pages
- name: Cleanup
run: cd ..