Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaskiewicz committed Nov 3, 2023
1 parent 54342d5 commit 9a0f06d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/actions/publish-npm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,30 @@ runs:
- name: Install latest npm
run: npm install -g npm@latest
shell: bash
- name: Which Stencil (check package.json)
run: cat package.json
shell: bash
- name: Install Dependencies
run: npm ci
shell: bash
- name: Which Stencil
run: npm ls @stencil/core
shell: bash
working-directory: ${{ inputs.working-directory }}
- name: Update Version
run: npm version ${{ inputs.version }} --git-tag-version false
shell: bash
working-directory: ${{ inputs.working-directory }}
- name: Which Stencil
run: npm ls @stencil/core
shell: bash
- name: Run Build
run: npm run build
shell: bash
working-directory: ${{ inputs.working-directory }}
- name: Which Stencil
run: npm ls @stencil/core
shell: bash
- name: Prepare NPM Token
run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
working-directory: ${{ inputs.working-directory }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
- name: Install Dependencies
run: npm ci --no-package-lock
shell: bash
- name: Which Stencil?
run: npm ls @stencil/core
shell: bash
- id: create-dev-hash
name: Create Dev Hash
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release-ionicons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
id-token: write
steps:
- uses: actions/checkout@v3
- name: Which Stencil (check package.json)
run: cat package.json
shell: bash
- uses: ./.github/workflows/actions/publish-npm
with:
tag: ${{ inputs.tag }}
Expand Down
6 changes: 3 additions & 3 deletions src/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -7445,10 +7445,10 @@
{
"name": "open",
"tags": [
"open",
"external",
"anchor",
"link"
"external",
"link",
"open"
]
},
{
Expand Down

0 comments on commit 9a0f06d

Please sign in to comment.