Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
twiddli committed Mar 28, 2023
1 parent 378bb44 commit 2b6abb7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,12 @@ jobs:
run: |
echo "HPX_VERSION=$(node -p "require('./packages/client/package.json').version")" >> $GITHUB_ENV
echo "RELEASE_NAME=happypandax_client-$(node -p "require('./packages/client/package.json').version")-${{ matrix.os }}" >> $GITHUB_ENV
- name: Tag release
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git tag -a ${{ env.RELEASE_NAME }} -m "Release ${{ env.RELEASE_NAME }}" || true
git push --quiet --tags || true
- name: Archive release
run: |
cd packages/client/dist
Expand Down

0 comments on commit 2b6abb7

Please sign in to comment.