Skip to content

rem extra var

rem extra var #7

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
repository: DannyIsYog/gamedev-portfolio
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- 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: |
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 config user.email "fabiodaniel.2000@gmail.com"
git config user.name "DannyIsYog"
git remote add origin git@github.com:DannyIsYog/gamedev-portfolio.git
git push -f origin master:gh-pages
- name: Cleanup
run: cd ..