wip: 🔕 temporary commit

This commit is contained in:
Paramtamtam 2024-06-29 21:12:08 +04:00
parent 2664c467c0
commit e91a6f99fd
No known key found for this signature in database
GPG Key ID: 366371698FAD0A2B

View File

@ -46,7 +46,7 @@ jobs:
fail-fast: false
matrix:
os: [linux, darwin, windows] # freebsd
arch: [amd64, arm64] # 386
arch: [amd64, arm64] # 386
needs: [golangci-lint, go-test]
steps:
- uses: actions/checkout@v4
@ -58,11 +58,11 @@ jobs:
CGO_ENABLED: 0
LDFLAGS: -s -w -X gh.tarampamp.am/error-pages/internal/appmeta.version=${{ steps.slug.outputs.commit-hash-short }}
run: go build -trimpath -ldflags "$LDFLAGS" -o ./error-pages ./cmd/error-pages/
- if: contains(runner.os, matrix.os) && contains(runner.arch, matrix.arch)
- if: matrix.os == 'linux' && matrix.arch == 'amd64'
run: ./error-pages --version && ./error-pages -h
- if: contains(runner.os, matrix.os) && contains(runner.arch, matrix.arch)
- if: matrix.os == 'linux' && matrix.arch == 'amd64'
run: mkdir ./out && ./error-pages --log-level=debug build --index --target-dir ./out
- if: contains(runner.os, matrix.os) && contains(runner.arch, matrix.arch)
- if: matrix.os == 'linux' && matrix.arch == 'amd64'
run: |
test -f ./out/index.html
test -f ./out/ghost/404.html