Skip to content

Commit cce0f19

Browse files
committed
start gluing together
1 parent 20f26f7 commit cce0f19

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

.github/workflows/actions/publish-npm/action.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ runs:
3535
run: rm stencil-playwright-build.zip
3636
shell: bash
3737

38-
- name: Bump Version
39-
run: npm version --no-git-tag-version ${{ inputs.version }}
40-
shell: bash
38+
# TODO(NOW): We cannot do this for production builds
39+
# - name: Bump Version
40+
# run: npm version --no-git-tag-version ${{ inputs.version }}
41+
# shell: bash
4142

4243
# Log the git diff for easy debugging
4344
- name: Log Generated Changes
@@ -57,7 +58,7 @@ runs:
5758

5859
# TODO(STENCIL-1206): Add --provenance flag to the command after we've made the repo public
5960
# https://github.blog/changelog/2023-07-26-publishing-with-npm-provenance-from-private-source-repositories-is-no-longer-supported/
60-
- name: Publish to NPM
61-
# TODO(NOW): Remove this --dry-run
62-
run: npm publish --tag ${{ inputs.tag }} --dry-run
63-
shell: bash
61+
# - name: Publish to NPM
62+
## TODO(NOW): Remove this --dry-run
63+
# run: npm publish --tag ${{ inputs.tag }} --dry-run
64+
# shell: bash

.github/workflows/release-production.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ jobs:
5252
echo Version: ${{ steps.version_retrieval.outputs.VERSION_STR }}
5353
shell: bash
5454

55-
# - name: Run Publish Scripts
56-
# uses: ./.github/workflows/actions/publish-npm
57-
# with:
58-
## TODO(NOW): Use ${{ inputs.tag }} instead of dev
59-
# tag: dev
60-
# version: ${{ steps.version_retrieval.outputs.VERSION_STR }}
61-
# token: ${{ secrets.NPM_TOKEN }}
55+
- name: Run Publish Scripts
56+
uses: ./.github/workflows/actions/publish-npm
57+
with:
58+
# TODO(NOW): Use ${{ inputs.tag }} instead of dev
59+
tag: dev
60+
version: ${{ steps.version_retrieval.outputs.VERSION_STR }}
61+
token: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)