We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54224a6 commit 66fe522Copy full SHA for 66fe522
.github/workflows/publish-dev.yml
@@ -22,9 +22,11 @@ jobs:
22
- name: Check previous released version
23
id: pre-release
24
run: |
25
- if [[ $(npm view @necord/localization@dev version | grep -e "$(jq --raw-output '.version' package.json)-dev.*.$(git rev-parse --short HEAD | cut -b1-3)") ]]; \
26
- then echo '::set-output name=release::false'; \
27
- else echo '::set-output name=release::true'; fi
+ if [[ $(npm view @necord/localization@dev version | grep -e "$(jq --raw-output '.version' package.json)-dev.*.$(git rev-parse --short HEAD | cut -b1-3)") ]]; then
+ echo "release=false" >> "$GITHUB_OUTPUT"
+ else
28
+ echo "release=true" >> "$GITHUB_OUTPUT"
29
+ fi
30
31
- name: Install dependencies
32
run: yarn install --frozen-lockfile
0 commit comments