Skip to content

Commit

Permalink
Fix indentation of GitHub actions comments
Browse files Browse the repository at this point in the history
  • Loading branch information
arichardson committed Jan 29, 2024
1 parent 9bb8f4b commit d647a2a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,24 @@ jobs:
runs-on: ubuntu-latest

steps:
# Checkout the repository
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

# Pull the latest RISC-V Docs container image
# Pull the latest RISC-V Docs container image
- name: Pull Container
run: docker pull riscvintl/riscv-docs-base-container-image:latest

# Build PDF and HTML.
# Build PDF and HTML.
- name: Build Files
run: make all
env:
VERSION: v${{ github.event.inputs.version }}
REVMARK: ${{ github.event.inputs.revision_mark }}

# Upload the built PDF and HTML files as a single artifact
# Upload the built PDF and HTML files as a single artifact
- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
with:
Expand All @@ -66,7 +66,7 @@ jobs:
build/*.html
retention-days: 30

# Upload gitlab pages artefact.
# Upload GitHub pages artefacts.
- name: Make gitlab pages directory
run: mkdir dist && cp build/*.html dist/index.html
if: github.event_name == 'workflow_dispatch'
Expand All @@ -77,7 +77,7 @@ jobs:
path: dist
if: github.event_name == 'workflow_dispatch'

# Create Release
# Create Release
- name: Create Release
uses: softprops/action-gh-release@v1
with:
Expand All @@ -91,7 +91,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GHTOKEN }}
if: github.event_name == 'workflow_dispatch'
# This condition ensures this step only runs for workflow_dispatch events.
# This condition ensures this step only runs for workflow_dispatch events.

# Deploy HTML to Github pages.
deploy:
Expand Down

0 comments on commit d647a2a

Please sign in to comment.