feat: add llms-txt command, llms.txt, and agent skill for LLM friendl… #52
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: Release | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 | |
| with: | |
| go-version: "1.x" | |
| cache: true | |
| - name: Install rclone | |
| run: sudo apt-get install -y rclone | |
| - name: Test | |
| run: go test ./... | |
| - name: Build archives | |
| run: sh scripts/build-release.sh "$GITHUB_REF_NAME" dist | |
| - name: Publish release | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: python3 scripts/publish-release.py "$GITHUB_REF_NAME" "$GITHUB_REPOSITORY" |