Skip to content

Merge pull request #146 from Kyutech-C3/feature/toybox-blog #100

Merge pull request #146 from Kyutech-C3/feature/toybox-blog

Merge pull request #146 from Kyutech-C3/feature/toybox-blog #100

Workflow file for this run

name: Build and Deploy
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Use Node.js 14
uses: actions/setup-node@v2
with:
node-version: 14
- name: create .env
run: |
touch .env
echo "CTF_SPACE_ID=${{ secrets.CTF_SPACE_ID }}" >> .env
echo "CTF_CDA_ACCESS_TOKEN=${{ secrets.CTF_CDA_ACCESS_TOKEN }}" >> .env
echo "BASE_URL=https://compositecomputer.club/" >> .env
echo "GOOGLE_ANALYTICS_ID=${{ secrets.GOOGLE_ANALYTICS_ID }}" >> .env
echo "TOYBOX_API_BASE_URL=${{ secrets.TOYBOX_API_BASE_URL }}" >> .env
- name: Install and Build 🔧
run: |
npm ci
npm run generate
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist
CNAME: compositecomputer.club