Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jibon57 committed Nov 3, 2024
1 parent 0028fb6 commit e8fbf87
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/release-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,18 @@ jobs:
- uses: googleapis/release-please-action@v4
id: release
with:
command: manifest
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
- name: Checkout
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.release_created }}
uses: actions/checkout@v4
- name: setup node
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.release_created }}
uses: actions/setup-node@v4
with:
node-version: "20.x"
- uses: pnpm/action-setup@v4
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.release_created }}
name: Install pnpm
with:
version: 9
Expand All @@ -45,13 +44,13 @@ jobs:
cd tmp
zip -X -r client.zip client
- name: Upload artifact
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.release_created }}
uses: actions/upload-artifact@v4
with:
name: upload client
path: tmp/client.zip
- name: Upload to release
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.release_created }}
uses: JasonEtco/upload-to-release@master
with:
args: tmp/client.zip application/zip
Expand Down

0 comments on commit e8fbf87

Please sign in to comment.