Skip to content

improve public/opensearch.xml generation #19

improve public/opensearch.xml generation

improve public/opensearch.xml generation #19

Workflow file for this run

name: Deploy static content to Pages
on:
push:
branches: ["main"]
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
env:
I4K_FIND_URL: ${{ steps.deployment.outputs.page_url }}

Check failure on line 24 in .github/workflows/static.yml

View workflow run for this annotation

GitHub Actions / Deploy static content to Pages

Invalid workflow file

The workflow is not valid. .github/workflows/static.yml (Line: 24, Col: 21): Unrecognized named-value: 'steps'. Located at position 1 within expression: steps.deployment.outputs.page_url
steps:
- name: Checkout
uses: actions/checkout@v3
- run: npm run opensearch public/opensearch.xml
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "."
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2