Skip to content

Commit 29a3df7

Browse files
authored
prep for deploy
1 parent 16ed529 commit 29a3df7

File tree

6 files changed

+2788
-14
lines changed

6 files changed

+2788
-14
lines changed

.eleventyignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: 'bun' # See documentation for possible values
9+
directory: '/' # Location of package manifests
10+
schedule:
11+
interval: 'weekly'
12+
13+
updates:
14+
- package-ecosystem: 'github-actions' # See documentation for possible values
15+
directory: '/' # Location of package manifests
16+
schedule:
17+
interval: 'weekly'

.github/workflows/deploy.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
# 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: [main]
8+
# Allows you to run this workflow manually from the Actions tab on GitHub.
9+
workflow_dispatch:
10+
11+
# Prevent multiple deployments from running simultaneously
12+
concurrency:
13+
group: deploy-${{ github.ref }}
14+
cancel-in-progress: true
15+
16+
# Allow this job to clone the repo and create a page deployment
17+
permissions:
18+
contents: read
19+
pages: write
20+
id-token: write
21+
22+
jobs:
23+
build:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Checkout your repository using git
27+
uses: actions/checkout@v6
28+
- name: Install, build, and upload your site
29+
uses: withastro/action@v5
30+
with:
31+
# path: . # The root location of your Astro project inside the repository. (optional)
32+
# node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 20. (optional)
33+
package-manager: bun@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
34+
35+
deploy:
36+
needs: build
37+
runs-on: ubuntu-latest
38+
environment:
39+
name: github-pages
40+
url: ${{ steps.deployment.outputs.page_url }}
41+
steps:
42+
- name: Deploy to GitHub Pages
43+
id: deployment
44+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

0 commit comments

Comments
 (0)