-
Notifications
You must be signed in to change notification settings - Fork 65
Open
Description
My workflow is pretty simple:
name: Deploy
on:
workflow_dispatch:
release:
types: [published]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: example
entrypoint: main.tsBut it errors saying it can't find file://src/main.ts
My main file is in the root directory...
What's going on?
I've tried setting root: . but it had no effect.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

