Skip to content

Add CNAME to public assets folder #4

Add CNAME to public assets folder

Add CNAME to public assets folder #4

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./portfolio
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: install node modules
run: npm install --no-audit
- name: Build tailwindcss
run: npm run build-css
- name: Deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "Shodan <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}