Skip to content

Commit

Permalink
Update auto-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hi02102002 authored May 18, 2024
1 parent 114ba33 commit d709814
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/auto-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,26 +43,6 @@ jobs:
- name: Install Dependencies
run: npm install

- name: Extract version from tag
if: startsWith(github.ref, 'refs/tags/')
id: extract_version
run: echo "::set-output name=VERSION::${GITHUB_REF#refs/tags/v}"

- name: Update package.json version
if: startsWith(github.ref, 'refs/tags/')
run: |
VERSION=$(echo "${{ steps.extract_version.outputs.VERSION }}" | sed 's/^v//')
npm version $VERSION --no-git-tag-version
- name: Commit version bump if tag
if: startsWith(github.ref, 'refs/tags/')
run: |
git config --global user.name 'hoanghuy'
git config --global user.email '[email protected]'
git add package.json
git commit -m "Bump version to ${{ steps.extract_version.outputs.VERSION }}"
git push origin HEAD:${GITHUB_REF#refs/heads/}
- name: Publish Package
run: npm publish
env:
Expand Down

0 comments on commit d709814

Please sign in to comment.