mindoc/.github/workflows/build.yml
ydf f37c4c3a56
Some checks failed
Go / ${{ matrix.config.name }} (map[artifact:linux name:Ubuntu Latest GCC os:ubuntu-latest]) (push) Has been cancelled
Go / ${{ matrix.config.name }} (map[artifact:windows name:Windows Latest MSVC os:windows-latest]) (push) Has been cancelled
upgrate dockerfile (#994)
* [docker] try upgrade docker version

* [docker] try fix docker file and  upgrade calibre to new

* [docker] try fix docker file

* [github] try upgrade workflow

---------

Co-authored-by: admin <you@example.com>
2025-03-24 18:04:15 +08:00

54 lines
1.1 KiB
YAML

name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
outputs:
tag: ${{ steps.git.outputs.tag }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Windows Latest MSVC",
artifact: "windows",
os: windows-latest
}
- {
name: "Ubuntu Latest GCC",
artifact: "linux",
os: ubuntu-latest
}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.0
- name: Build
run: |
go mod tidy
go build -v
# - name: Test
# run: go test -v ./...
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
path: |
conf/**/*
static/**/*
views/**/*
mindoc.*
name: mindoc-${{ matrix.config.artifact }}-${{ steps.git.outputs.tag }}.7z