Skip to content

fixed shorter date format #2

fixed shorter date format

fixed shorter date format #2

name: GH Pages Deploy
on:
push:
branches:
- main
paths-ignore:
- 'contracts/**/*.yaml'
- 'contracts/**/*.yml'
- 'preprocess/**'
workflow_run:
workflows: ["Preprocess YAML to Markdown"]
branches:
- main
types:
- completed
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Install marmite 🫙
run: cargo install marmite
- name: Build site 🏗️
run: marmite . site --debug
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4