Skip to content

ten years of ansible: fix typo #26

ten years of ansible: fix typo

ten years of ansible: fix typo #26

Workflow file for this run

---
name: GitHub Pages
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build_deploy:
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout Repository
uses: actions/checkout@master
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build web
run: npm run build
- name: Upload Artifact
uses: actions/[email protected]
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4