Skip to content

Commit 4feaafa

Browse files
committed
.
1 parent fb78660 commit 4feaafa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+10
-8948
lines changed

.github/workflows/deploy.yml

+10-20
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,29 @@
11
name: Deploy to GitHub Pages
22

33
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
64
push:
7-
branches: [main]
8-
# Allows you to run this workflow manually from the Actions tab on GitHub.
5+
branches: [ main ]
96
workflow_dispatch:
107

11-
# Allow this job to clone the repo and create a page deployment
128
permissions:
139
contents: read
1410
pages: write
1511
id-token: write
1612

1713
jobs:
18-
build:
19-
runs-on: ubuntu-latest
20-
steps:
21-
- name: Checkout your repository using git
22-
uses: actions/checkout@v3
23-
- name: Install, build, and upload your site
24-
uses: withastro/action@v0
25-
# with:
26-
# path: . # The root location of your Astro project inside the repository. (optional)
27-
# node-version: 16 # The specific version of Node that should be used to build your site. Defaults to 16. (optional)
28-
# 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)
29-
3014
deploy:
31-
needs: build
32-
runs-on: ubuntu-latest
3315
environment:
3416
name: github-pages
3517
url: ${{ steps.deployment.outputs.page_url }}
18+
runs-on: ubuntu-latest
3619
steps:
20+
- uses: actions/checkout@v3
21+
22+
- name: Upload artifact
23+
uses: actions/upload-pages-artifact@v1
24+
with:
25+
path: .
26+
3727
- name: Deploy to GitHub Pages
3828
id: deployment
39-
uses: actions/deploy-pages@v1
29+
uses: actions/deploy-pages@v2

README.md

-17
This file was deleted.

__docs__/site-preview.jpg

-753 KB
Binary file not shown.

astro.config.mjs

-16
This file was deleted.

0 commit comments

Comments
 (0)