DRYな備忘録

Don't Repeat Yourself.

deno

GitHub Actions からの deno deploy が失敗する: Error: The deployment failed: Relative import path "$fresh/server.ts" not prefixed with / or ./ or ../

問題 以下のようにデプロイのGitHub Actionsを設定したが、掲題のエラーを得る。 steps: - name: Clone repository uses: actions/checkout@v2 - name: Upload to Deno Deploy uses: denoland/deployctl@v1 with: project: "fresh-youtube" entrypoint: "./m…