Merge pull request #147 from Kyutech-C3/Simo-C3-patch-1 #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
workflow_call: | |
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 |