Merge branch 'main' of https://github.com/AoaoMH/CLIProxyAPI-Aoao; br… #129
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: goreleaser | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| goreleaser: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Refresh models catalog | |
| run: curl -fsSL https://raw.githubusercontent.com/router-for-me/models/refs/heads/main/models.json -o 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 | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| if [[ "${{ github.ref_type }}" == "tag" ]]; then | |
| VERSION="${{ github.ref_name }}" | |
| else | |
| VERSION="$(git describe --tags --always --dirty)" | |
| fi | |
| echo "VERSION=$VERSION" >> "$GITHUB_ENV" | |
| echo "COMMIT=$(git rev-parse --short HEAD)" >> "$GITHUB_ENV" | |
| echo "BUILD_DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> "$GITHUB_ENV" | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v4 | |
| with: | |
| distribution: goreleaser | |
| version: latest | |
| args: ${{ github.ref_type == 'tag' && 'release --clean' || 'release --clean --snapshot' }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| VERSION: ${{ env.VERSION }} | |
| COMMIT: ${{ env.COMMIT }} | |
| BUILD_DATE: ${{ env.BUILD_DATE }} |