Skip to content

Commit 39d1ce7

Browse files
committed
gh
1 parent de9a2ab commit 39d1ce7

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

.github/workflows/deploy-pages.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Deploy HTML to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
pages: write
13+
id-token: write
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
18+
- name: Upload Pages artifact
19+
uses: actions/upload-pages-artifact@v1
20+
with:
21+
path: html
22+
23+
deploy:
24+
needs: build
25+
runs-on: ubuntu-latest
26+
permissions:
27+
pages: write
28+
id-token: write
29+
steps:
30+
- name: Deploy to GitHub Pages
31+
uses: actions/deploy-pages@v1

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# browserbase64
22

3-
This is an in-browser base64 benchmark.
3+
This is an in-browser base64 benchmark.
4+
s

0 commit comments

Comments
 (0)