Skip to content

chore: bump version to 0.2.0 #3

chore: bump version to 0.2.0

chore: bump version to 0.2.0 #3

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create release tarball
run: |
VERSION="${GITHUB_REF_NAME}"
DIR="opencode-litellm-costs-${VERSION}"
mkdir -p "$DIR"
cp index.ts tracker.ts package.json tsconfig.json install.sh "$DIR/"
tar -czf "${DIR}.tar.gz" "$DIR"
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: opencode-litellm-costs-*.tar.gz