Bump cookie, astro and youch #255
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: Cloudflare Pages | |
on: | |
# schedule: | |
# - cron: "0 12 * * *" | |
push: | |
branches: | |
- main | |
env: | |
ASTRO_SITE: ${{ vars.ASTRO_SITE }} | |
GOATCOUNTER_SITE: ${{ vars.GOATCOUNTER_SITE }} | |
GISCUS_REPO: ${{ github.repository }} | |
GISCUS_REPO_ID: ${{ github.repository_id }} | |
GISCUSS_CATEGORY: ${{ vars.GISCUSS_CATEGORY }} | |
GISCUSS_CATEGORY_ID: ${{ vars.GISCUSS_CATEGORY_ID }} | |
STATUS_SITE: ${{ vars.STATUS_SITE }} | |
STATUS_SITE_ICON: ${{ vars.STATUS_SITE_ICON }} | |
## Node related. | |
DISABLE_OPENCOLLECTIVE: 1 | |
ADBLOCK: 1 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get CV | |
run: curl -o public/cv.pdf ${{ secrets.CV_URL }} | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install Dependencies | |
run: npm install | |
- name: Build copernicus | |
run: npm run build | |
- name: Upload Pages Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pages | |
path: dist | |
retention-days: 1 | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
deployments: write | |
steps: | |
- name: Download Pages Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: pages | |
path: dist | |
- name: Publish to Cloudflare Pages | |
uses: cloudflare/pages-action@v1 | |
with: | |
wranglerVersion: 3 | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
projectName: ${{ secrets.CLOUDFLARE_PAGES_PROJECT }} | |
directory: dist | |
- name: Discord Notify | |
uses: sarisia/actions-status-discord@v1 | |
if: always() | |
with: | |
webhook: ${{ secrets.DISCORD_WEBHOOK }} | |
username: copernicus |