Skip to content

try fix github workflow I4K_FIND_URL with github {env.url} #69

try fix github workflow I4K_FIND_URL with github {env.url}

try fix github workflow I4K_FIND_URL with github {env.url} #69

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
env:
I4K_FIND_URL: ${{ env.url }}

Check failure on line 18 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: 18, Col: 17): Unrecognized named-value: 'env'. Located at position 1 within expression: env.url
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Generate opensearch.xml
run: npm run opensearch assets/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