Skip to content

Merge pull request #24 from IceFireDB/feat_upgrade #18

Merge pull request #24 from IceFireDB/feat_upgrade

Merge pull request #24 from IceFireDB/feat_upgrade #18

Workflow file for this run

name: Pages
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- run: mv README.md doc/index.md
- name: Deploy Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc
enable_jekyll: true
build-example-kv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.2
- name: Build
run: |
cd example/memory_kv/
go build