go-fs: override noResizableBuffers=true #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build site | |
on: | |
push: | |
branches: [main] | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.23.4" | |
- name: Set up Deno environment | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Build gobid main | |
run: GOOS=js GOARCH=wasm go build -o gh-pages/src/build/main.wasm github.com/garciat/gobid/cmd/main | |
- name: Setup Pages | |
id: setup-pages | |
uses: actions/configure-pages@v5 | |
- name: Build site | |
working-directory: gh-pages | |
run: | | |
deno task build --dest=_site --location="${{ steps.setup-pages.outputs.base_url }}" | |
- name: Upload site artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: "gh-pages/_site" | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |