2024-10-15 06:51:29 +00:00
|
|
|
name: Get Codex
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2024-11-12 19:51:38 +00:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
|
|
|
- '.gitignore'
|
|
|
|
- '.gitattributes'
|
|
|
|
- 'LICENSE*'
|
2024-10-15 06:51:29 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
|
|
|
folder: site
|
|
|
|
|
|
|
|
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pages: write
|
|
|
|
id-token: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
name: Deploy
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.ref == 'refs/heads/master'
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: '0'
|
|
|
|
|
|
|
|
- name: Prepare file
|
|
|
|
run: |
|
|
|
|
mkdir ${{ env.folder }}
|
2024-11-11 16:33:34 +00:00
|
|
|
find . -type f \
|
|
|
|
-maxdepth 1 \
|
|
|
|
-name "*.*" \
|
|
|
|
! -name '*.md' \
|
|
|
|
! -name ".git*" \
|
|
|
|
! -name "LICENSE*" \
|
|
|
|
-exec cp {} ${{ env.folder }} \;
|
2024-10-15 06:51:29 +00:00
|
|
|
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-pages-artifact@v3
|
|
|
|
with:
|
|
|
|
path: ${{ env.folder }}
|
|
|
|
|
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
uses: actions/deploy-pages@v4
|