Skip to content

Commit

Permalink
Restore missing --no-git-tag-version flag
Browse files Browse the repository at this point in the history
  • Loading branch information
scotttrinh committed Dec 1, 2023
1 parent d25a530 commit 5491f67
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
if: steps.check_publish_driver.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace edgedb version --minor
yarn workspace edgedb version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/edgedb/package.json').version")
yarn workspace edgedb version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
yarn workspace edgedb version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish 'edgedb'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
Expand Down Expand Up @@ -112,9 +112,9 @@ jobs:
if: steps.check_publish_generate.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace @edgedb/generate version --minor
yarn workspace @edgedb/generate version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/generate/package.json').version")
yarn workspace @edgedb/generate version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
yarn workspace @edgedb/generate version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish '@edgedb/generate'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
Expand Down Expand Up @@ -171,9 +171,9 @@ jobs:
if: steps.check_publish_auth_core.outputs.type == ''
run: |
echo "Version in package.json has not changed. Creating canary release."
yarn workspace @edgedb/auth-core version --minor
yarn workspace @edgedb/auth-core version --no-git-tag-version --minor
CURRENT_VERSION=$(node -p "require('./packages/auth-core/package.json').version")
yarn workspace @edgedb/auth-core version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
yarn workspace @edgedb/auth-core version --no-git-tag-version --new-version "${CURRENT_VERSION}-canary.$(date +'%Y%m%dT%H%M%S')"
- name: Publish '@edgedb/auth-core'
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552
Expand Down

0 comments on commit 5491f67

Please sign in to comment.