forked from chroma-core/chroma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] add image tags to db migration jobs (chroma-core#2425)
- Loading branch information
Showing
259 changed files
with
21,298 additions
and
5,942 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: 📦 Development Release JavaScript client | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release-dev: | ||
strategy: | ||
matrix: | ||
registry: [ "https://npm.pkg.github.com" ] | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
permissions: write-all | ||
steps: | ||
- name: Check if tag matches the pattern | ||
id: check-tag | ||
run: | | ||
# we don't necessarily need this | ||
if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then | ||
echo "Push to main branch, releasing dev version to GH packages" | ||
echo "NPM_SCRIPT=release_dev" >> "$GITHUB_ENV" | ||
else | ||
echo "The ref does not point to main, exiting workflow" # we alredy make the check above but this is a good practice | ||
exit 1 | ||
fi | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
registry-url: ${{ matrix.registry }} | ||
check-latest: false | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Install dependencies | ||
run: npm install | ||
working-directory: ./clients/js/ | ||
- name: Dev Version | ||
id: dev-version | ||
run: | | ||
set -e | ||
# Get current version | ||
CURRENT_VERSION=$(node -p "require('./package.json').version") | ||
# Generate a beta tag using commit short sha and run id | ||
COMMIT_SHA=$(git rev-parse --short HEAD) | ||
DEV_TAG="dev.${COMMIT_SHA}-${GITHUB_RUN_ID}" | ||
# Create full version with beta tag | ||
BASE_VERSION=$(echo $CURRENT_VERSION | cut -f1,2 -d.) | ||
PATCH_VERSION=$(echo $CURRENT_VERSION | cut -f3 -d.) | ||
# bump patch version | ||
NEW_PATCH_VERSION=$((PATCH_VERSION + 1)) | ||
NEW_VERSION="${BASE_VERSION}.${NEW_PATCH_VERSION}-${DEV_TAG}" | ||
echo "NEW_VERSION=${NEW_VERSION}" >> "$GITHUB_ENV" | ||
working-directory: ./clients/js/ | ||
- name: Update package.json with organization scope | ||
run: | | ||
ORG_NAME="@chroma-core" | ||
PACKAGE_NAME=$(jq -r '.name' package.json) | ||
jq --arg org "$ORG_NAME" --arg name "$PACKAGE_NAME" '.name = "\($org)/\($name)"' package.json > tmp.$$.json && mv tmp.$$.json package.json | ||
working-directory: ./clients/js/ | ||
- name: Test & publish | ||
run: npm run db:run && PORT=8001 npm run $NPM_SCRIPT | ||
working-directory: ./clients/js/ | ||
env: | ||
NODE_AUTH_TOKEN: ${{ matrix.registry == 'https://registry.npmjs.org' && secrets.NPM_TOKEN || secrets.GITHUB_TOKEN }} |
Oops, something went wrong.