We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f95aaa5 commit 064ad1eCopy full SHA for 064ad1e
1 file changed
.github/workflows/frontend-image.yml
@@ -5,6 +5,8 @@ on:
5
branches: [main]
6
paths:
7
- 'frontend/**'
8
+ - '.github/workflows/frontend-image.yml'
9
+ workflow_dispatch:
10
11
permissions:
12
contents: read
@@ -22,7 +24,8 @@ jobs:
22
24
cd frontend
23
25
npm ci
26
npm version patch --no-git-tag-version
- echo "VERSION=$(node -p 'require(\"./package.json\").version')" >> $GITHUB_ENV
27
+ VERSION=$(node -p 'require("./package.json").version')
28
+ echo "VERSION=$VERSION" >> "$GITHUB_ENV"
29
cd ..
30
- name: Commit version bump
31
run: |
0 commit comments