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 b5f24b9 commit cb69588Copy full SHA for cb69588
.github/workflows/release.yml
@@ -29,8 +29,11 @@ jobs:
29
- name: Update package.json version
30
run: |
31
tmp=$(mktemp)
32
- jq '.version = "${{ steps.ref.outputs.tag }}"' package.json > "$tmp"
+ VERSION=${TAG#"v"}
33
+ jq ".version = \"$VERSION\"" package.json > "$tmp"
34
mv "$tmp" package.json
35
+ env:
36
+ TAG: ${{ steps.ref.outputs.tag }}
37
38
- name: Build lambda distribution
39
run: yarn dist
package.json
@@ -1,7 +1,6 @@
1
{
2
"name": "terraform-aws-lambda",
3
- "version": "v0.0.0",
4
- "description": "",
+ "version": "0.1.0",
5
"scripts": {
6
"test": "mocha -r ts-node/register test/**/*.spec.ts",
7
"test:watch": "yarn test --watch --watch-extensions ts",
0 commit comments