ci: update crates.io args #1
Workflow file for this run
This file contains 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: Test and Release | |
'on': | |
push: | |
branches: | |
- master | |
- beta | |
- next | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: ChromaDB | |
uses: CakeCrusher/[email protected] | |
- name: Run tests | |
run: cargo test | |
release: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- name: "☁️ checkout repository" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "🔧 setup node" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: "🔧 install npm@latest" | |
run: npm i -g npm@latest | |
- name: "📦 install dependencies" | |
uses: bahmutov/npm-install@v1 | |
- name: "Semantic release🚀" | |
id: release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
run: | | |
npx semantic-release | |
- name: "echo outputs" | |
run: | | |
echo "RELEASE_TAG: ${{ env.RELEASE_TAG }}" | |
echo "RELEASE_VERSION: ${{ env.RELEASE_VERSION }}" | |
echo "outputs.release-tag: ${{ steps.release.outputs.release-tag }}" | |
echo "outputs.release-version: ${{ steps.release.outputs.release-version }}" | |