Build and Deploy #91
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: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '0 0 * * *' | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'latest' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Get blog feed URL from 'src/customizations/siteproperties.json' | |
id: get-url | |
run: | | |
feedUrl=$(node -e "const fs = require('fs'); const sitedata = JSON.parse(fs.readFileSync('src/customizations/siteproperties.json', 'utf8')); const feedUrl = sitedata.substackUrl + '/feed'; console.log(feedUrl);") | |
echo "feedUrl=$feedUrl" >> $GITHUB_ENV | |
- name: Fetch RSS Feed | |
uses: Promptly-Technologies-LLC/rss-fetch-action@v1 | |
with: | |
feed_url: ${{ env.feedUrl }} | |
file_path: 'src/components/ui/RssFeed.json' | |
remove_last_build_date: true | |
- name: Build | |
run: npm run build | |
- name: Commit and push changes to repository | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'Automated build/blog feed update' | |
- name: Set the domain | |
id: set-domain | |
run: | | |
echo "DOMAIN=$(node -e 'console.log(new URL(require(\"./src/customizations/siteproperties.json\").url).hostname)')" >> $GITHUB_ENV | |
- name: Add CNAME to dist | |
run: | | |
if [[ "${{ env.DOMAIN }}" != *.github.io ]]; then | |
echo ${{ env.DOMAIN }} > ./dist/CNAME | |
fi | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: dist | |
branch: gh-pages | |
single-commit: true |