Skip to content

Give birth to the most insane background ever #46

Give birth to the most insane background ever

Give birth to the most insane background ever #46

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: ["deploy"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Copy files
run: |
mkdir -p dist
cp -r base.css index.html blog.html blog.js articles.json articles/ favicon.ico robots.txt dist/
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2