remove netlify package #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | ||
on: | ||
push: | ||
branches: main | ||
pull_request: | ||
branches: main | ||
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@v1 | ||
with: | ||
deno-version: v1.x | ||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: lts/* | ||
- name: Install step | ||
run: "yarn install" | ||
- name: Build step | ||
run: "yarn add sharp --ignore-engines; yarn build" | ||
with: | ||
Check failure on line 36 in .github/workflows/deploy.yml GitHub Actions / DeployInvalid workflow file
|
||
env: "ASTRO_STUDIO_APP_TOKEN=df6c1274d2eff21e31c7061e4a6ea16f50eef1e4:qhxqdah1045lcbf5btjsjwnn93bb:qhxqdah1045lcbf5btjsjwnn93bb" | ||
- name: Upload to Deno Deploy | ||
uses: denoland/deployctl@v1 | ||
with: | ||
project: "danielschmi-cover-shuff-31" | ||
entrypoint: "server/entry.mjs" | ||
root: "dist" |