Skip to content

Commit

Permalink
Merge pull request #13 from thulasi-ram/fix-updater-release-event
Browse files Browse the repository at this point in the history
Fix: Release Event Updater Json
  • Loading branch information
thulasi-ram authored Feb 20, 2024
2 parents 88278e3 + e3a427c commit 7c17838
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
user_input_version:
description: 'Version /tag to target'
description: "Version /tag to target"
release:
types: [released, published]

Expand All @@ -16,12 +16,12 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: 'package-lock.json'
cache: "npm"
cache-dependency-path: "package-lock.json"
- env:
GH_TOKEN: ${{ github.token }}
# RELEASE_EVENT: ${{github.event.release}}
RELEASE_TAG: ${{github.event.inputs.user_input_version}}
RELEASE_EVENT: ${{ github.event.release }}
RELEASE_TAG: ${{ github.event.inputs.user_input_version }}
run: |
cd ./scripts
npm ci
Expand Down

0 comments on commit 7c17838

Please sign in to comment.