forked from router-for-me/CLIProxyAPIPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (62 loc) · 2.05 KB
/
release.yaml
File metadata and controls
65 lines (62 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: goreleaser
on:
workflow_dispatch:
inputs:
tag:
description: 'Release tag to build and publish, for example v6.8.55-2'
required: true
ref:
description: 'Git ref to checkout before building. Defaults to the triggering ref.'
required: false
push:
# run only against tags
tags:
- '*'
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.ref || github.ref }}
- name: Prepare manual release tag
if: github.event_name == 'workflow_dispatch'
run: |
if [ -z "${{ inputs.tag }}" ]; then
echo "workflow_dispatch input 'tag' is required" >&2
exit 1
fi
git tag -f "${{ inputs.tag }}" HEAD
- name: Refresh models catalog
run: |
git -C third_party/models fetch --depth 1 origin main
git -C third_party/models checkout --detach FETCH_HEAD
cp third_party/models/models.json internal/registry/models/models.json
- run: git fetch --force --tags
- uses: actions/setup-go@v4
with:
go-version: '>=1.26.0'
cache: true
- name: Generate Build Metadata
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
echo "VERSION=${{ inputs.tag }}" >> $GITHUB_ENV
else
echo "VERSION=${GITHUB_REF_NAME}" >> $GITHUB_ENV
fi
echo COMMIT=`git rev-parse --short HEAD` >> $GITHUB_ENV
echo BUILD_DATE=`date -u +%Y-%m-%dT%H:%M:%SZ` >> $GITHUB_ENV
- uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean --skip=validate
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ env.VERSION }}
COMMIT: ${{ env.COMMIT }}
BUILD_DATE: ${{ env.BUILD_DATE }}