Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

fix: hackathon (#727) #438

fix: hackathon (#727)

fix: hackathon (#727) #438

Workflow file for this run

---
name: GitHub Pages Deploy
on:
push:
branches: [main]
jobs:
build-and-deploy:
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: npm install
- name: Deploy
run: |
git config --global user.name 'wemakedevs'
git config --global user.email 'kunal@wemakedevs.org'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
CI=false npm run deploy