mirror of
https://github.com/simongregorebner/gitea-pages.git
synced 2025-04-28 05:00:02 +02:00
24 lines
495 B
YAML
24 lines
495 B
YAML
name: Build and Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*.*.*'
|
|
|
|
jobs:
|
|
build-and-release:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: 'stable'
|
|
- run: go install github.com/caddyserver/xcaddy/cmd/xcaddy@latest
|
|
- run: xcaddy build --with github.com/simongregorebner/gitea-pages=.
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: caddy
|
|
path: caddy
|