How to solve the problem of 'no artifacts named' GitHub pages' was found for this workflow run #141562
Unanswered
lw779861797-commits
asked this question in
Pages
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Select Topic Area
Question
Body
this is my worker flow:
this error at Deploy JupyterLite site to GitHub Pages
name: Build and Deploy
on:
push:
branches:
- main
pull_request:
branches:
- '*'
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
deploy:
needs: build
if: github.ref == 'refs/heads/main'
permissions:
pages: write
id-token: write
Beta Was this translation helpful? Give feedback.
All reactions