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
# Trigger the workflow every time you push to the `main` branch
5
+
# Using a different branch name? Replace `main` with your branch’s name
6
+
push:
7
+
branches:
8
+
- main
9
+
- 'ci-*'
10
+
# Allows you to run this workflow manually from the Actions tab on GitHub.
11
+
workflow_dispatch:
12
+
13
+
# Allow this job to clone the repo and create a page deployment
14
+
permissions:
15
+
contents: read
16
+
pages: write
17
+
id-token: write
18
+
19
+
jobs:
20
+
build:
21
+
runs-on: ubuntu-latest
22
+
steps:
23
+
- name: Checkout your repository using git
24
+
uses: actions/checkout@v4
25
+
- name: Install, build, and upload your site
26
+
uses: withastro/action@v3
27
+
# with:
28
+
# path: . # The root location of your Astro project inside the repository. (optional)
29
+
# node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 20. (optional)
30
+
# package-manager: pnpm@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
31
+
# env:
32
+
# PUBLIC_POKEAPI: 'https://pokeapi.co/api/v2' # Use single quotation marks for the variable value. (optional)
0 commit comments