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
Copy file name to clipboardExpand all lines: .github/workflows/deploy.yaml
+20-3Lines changed: 20 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,19 +15,36 @@ permissions:
15
15
id-token: write
16
16
actions: read
17
17
18
+
concurrency:
19
+
group: "pages"
20
+
cancel-in-progress: true
21
+
18
22
jobs:
19
23
build:
20
24
runs-on: ubuntu-latest
21
25
steps:
22
26
- name: Checkout your repository using git
23
27
uses: actions/checkout@v3
28
+
24
29
- name: Install, build, and upload your site
25
-
uses: withastro/action@v2
26
-
# with:
30
+
uses: withastro/action@v3
31
+
with:
32
+
node-version: 18# The specific version of Node that should be used to build your site. Defaults to 16. (optional)
27
33
# path: . # The root location of your Astro project inside the repository. (optional)
28
-
# node-version: 16 # The specific version of Node that should be used to build your site. Defaults to 16. (optional)
29
34
# package-manager: yarn # 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