File tree Expand file tree Collapse file tree
.github/workflows/actions/publish-npm Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,25 +42,26 @@ runs:
4242 run : npm version ${{ inputs.version }}
4343 shell : bash
4444 working-directory : ${{ inputs.working-directory }}
45- - name : Run Build
46- run : npm run build
47- shell : bash
48- working-directory : ${{ inputs.working-directory }}
49- - name : Prepare NPM Token
50- run : echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
51- working-directory : ${{ inputs.working-directory }}
52- shell : bash
53- env :
54- NPM_TOKEN : ${{ inputs.token }}
55- - name : Publish to NPM
56- run : npm publish ${{ inputs.folder }} --tag ${{ inputs.tag }} --provenance
57- shell : bash
58- working-directory : ${{ inputs.working-directory }}
45+ # - name: Run Build
46+ # run: npm run build
47+ # shell: bash
48+ # working-directory: ${{ inputs.working-directory }}
49+ # - name: Prepare NPM Token
50+ # run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
51+ # working-directory: ${{ inputs.working-directory }}
52+ # shell: bash
53+ # env:
54+ # NPM_TOKEN: ${{ inputs.token }}
55+ # - name: Publish to NPM
56+ # run: npm publish ${{ inputs.folder }} --tag ${{ inputs.tag }} --provenance
57+ # shell: bash
58+ # working-directory: ${{ inputs.working-directory }}
5959
6060 - name : Create Release
6161 if : ${{ inputs.createRelease == 'true' }}
6262 run : |
6363 git remote set-url origin https://${GH_TOKEN}:x-oauth-basic@github.com/ionic-team/ionicons.git
64+ git remote -v
6465 git push origin main --tags
6566 gh auth login --with-token ${{ inputs.ghToken }}
6667 gh release create ${{ inputs.tag }} --title "v${{ inputs.tag }}" --generate-notes
You can’t perform that action at this time.
0 commit comments