Skip to content

Commit

Permalink
fix(release): fixes issue with release
Browse files Browse the repository at this point in the history
  • Loading branch information
pavankjadda committed Jul 1, 2024
1 parent f2386dc commit a5d1538
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,19 @@ jobs:
- name: Build packages
run: pnpm run build

- name: Semantic release
run: npx semantic-release

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}

- name: Update version in source code
run: |
git fetch
latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)
version=${latest_tag#v}
bash release.sh $version ${{ secrets.GPG_KEY_ID }}
- name: Semantic release
run: npx semantic-release

- name: build demo
run: pnpm run build:ng-kit-demo

0 comments on commit a5d1538

Please sign in to comment.