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 a70bf85 commit 277d3d0Copy full SHA for 277d3d0
.github/workflows/build-and-release.yml
@@ -22,10 +22,9 @@ jobs:
22
id: step2
23
run: |
24
# In case only a shallow clone was done
25
- git fetch --tags
+ # git fetch --tags
26
27
VERSION=$(cat 'package.json' | jq -r '.version')
28
- VERSION=0.1.8
29
30
if [[ ! $(git tag | grep "${VERSION}") ]]; then
31
echo "New version: v${VERSION}"
@@ -64,7 +63,8 @@ jobs:
64
63
65
strategy:
66
matrix:
67
- os: [macos-latest, ubuntu-latest, windows-latest]
+ os: [ubuntu-latest]
+ # os: [macos-latest, ubuntu-latest, windows-latest]
68
69
steps:
70
- name: Check out Git repository
@@ -84,4 +84,4 @@ jobs:
84
85
# If the commit is tagged with a version (e.g. "v1.0.0"),
86
# release the app after building
87
- release: ${{ VERSION }}
+ release: $VERSION
0 commit comments