You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Allow this job to clone the repo and create a page deployment
9
+
permissions:
10
+
contents: read
11
+
pages: write
12
+
id-token: write
13
+
14
+
jobs:
15
+
build:
16
+
runs-on: ubuntu-latest
17
+
steps:
18
+
- name: Checkout your repository using git
19
+
uses: actions/checkout@v3
20
+
- name: Install, build, and upload your site
21
+
uses: withastro/action@v0
22
+
with:
23
+
# path: ./website # The root location of your Astro project inside the repository. (optional)
24
+
# node-version: 16 # The specific version of Node that should be used to build your site. Defaults to 16. (optional)
25
+
package-manager: pnpm # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
0 commit comments