Skip to content

Commit

Permalink
Update publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
leroykorterink committed Dec 12, 2023
1 parent 34cbd0f commit abdf10f
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions .github/workflows/bump-version-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,36 +37,30 @@ jobs:
with:
node-version: '20.x'

- name: Install dependencies
- name: Install dependencies and build
env:
GSAP_TOKEN: ${{ secrets.GSAP_TOKEN }}
run: |
npm config set //npm.greensock.com/:_authToken=$GSAP_TOKEN
npm config set @gsap:registry=https://npm.greensock.com
npm ci
- name: Install dependencies
run: |
npm run build
- name: Setup Git
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Bump Version
- name: Bump version
run: |
npm version ${{ github.event.inputs.version }} --no-git-tag-version --preid ${{ github.event.inputs.prereleaseid }}
git add .
git commit -m "v$(npm pkg get version | tr -d '"')"
git tag $(npm pkg get version | tr -d '"') -m "v$(npm pkg get version | tr -d '"')"
npm version ${{ github.event.inputs.version }} --preid ${{ github.event.inputs.prereleaseid }}
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
provenance: true
ignore-scripts: false
- name: Publish
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish --provenance --access public
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Push latest version
run: git push origin main --follow-tags

0 comments on commit abdf10f

Please sign in to comment.