Skip to content

Created CD pipeline for the static website (docs/www) #1

Created CD pipeline for the static website (docs/www)

Created CD pipeline for the static website (docs/www) #1

Workflow file for this run

name: www
on:
push:
branches: [master]
paths:
- '.github/workflows/www.yaml'
- 'docs/www/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
permissions:
id-token: write
pages: write
environment:
name: ${{ github.workflow }}
url: ${{ steps.deploy.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: checkout-repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: configure
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
- name: upload
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
with:
path: docs/www
- name: deploy
id: deploy
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4
with:
artifact_name: "docs/www"