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 92b97ab commit 7f9dc40Copy full SHA for 7f9dc40
.github/workflows/release.yml
@@ -17,9 +17,6 @@ jobs:
17
with:
18
github-token: ${{ secrets.CHANGELOG_RELEASE }}
19
20
- - name: version
21
- run: echo ${{ steps.changelog.outputs.tag }} && sed -i 's/0.0.0/${{ steps.changelog.outputs.tag }}/g' public/app.json
22
-
23
- name: create release
24
uses: actions/create-release@v1
25
if: ${{ steps.changelog.outputs.skipped == 'false' }}
Dockerfile
@@ -7,6 +7,7 @@ COPY package*.json ./
7
RUN npm install --ignore-scripts
8
COPY . .
9
10
+RUN sed -i 's/0.0.0/'`npm -s run env echo '$npm_package_version'`'/g' public/app.json
11
RUN npm run build
12
13
FROM node:15 as production
0 commit comments