Skip to content

how to add secrets to macOS keychain #49

how to add secrets to macOS keychain

how to add secrets to macOS keychain #49

name: Deploy gh-pages
on:
schedule:
- cron: '0 0 1 1 *'
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Prepare Node environment
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install NPM packages
run: npm install
- name: Apply customizations
run: |
sed -i.bak 's/f6f8fa/f6f6f6/gI' node_modules/prism-react-renderer/themes/github/index.cjs.js
- name: Build website
run: npm run build
- name: Deploy on gh-pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'