We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
The GitHub Actions extension for VS Code shows me that "github-pages" is not a supported environment.
To Reproduce
Steps to reproduce the behavior:
Value 'github-pages' is not valid
Expected behavior
Accept "github-pages" as value.
Screenshots
Extension Version v0.26.3
v0.26.3
Additional context
Here is my full workflow:
name: "Deploy Website" on: push: branches: ["master"] jobs: build: name: "Build" runs-on: ubuntu-latest steps: - name: "Checkout Code" uses: actions/checkout@v4 - name: "Setup Node" uses: actions/setup-node@v4 with: node-version: "20" - name: "Build Website" run: npm ci && npm run build - name: "Upload artifact" uses: actions/upload-pages-artifact@v3 with: path: ./dist deploy: environment: name: "github-pages" url: ${{ steps.deployment.outputs.page_url }} needs: build permissions: pages: write id-token: write runs-on: ubuntu-latest name: "Deploy" steps: - name: "Deploy to GitHub Pages" id: deployment uses: actions/deploy-pages@v4
The text was updated successfully, but these errors were encountered:
It works for me. Does retyping the environment name help?
Sorry, something went wrong.
Yes, retyping the name helps indeed!
No branches or pull requests
Describe the bug
The GitHub Actions extension for VS Code shows me that "github-pages" is not a supported environment.
To Reproduce
Steps to reproduce the behavior:
Value 'github-pages' is not valid
)Expected behavior
Accept "github-pages" as value.
Screenshots
Extension Version
v0.26.3
Additional context
Here is my full workflow:
The text was updated successfully, but these errors were encountered: