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 c1e2e23 commit 964e169Copy full SHA for 964e169
.github/workflows/page-site.yml
@@ -19,7 +19,9 @@ jobs:
19
- run: npm run docs:build
20
- name: Check if version has been updated
21
if: ${{ github.ref == 'refs/heads/master' }}
22
- run: echo "previous_tag=$(git describe --tags --abbrev=0 2>/dev/null || echo '')" >> $GITHUB_ENV
+ run: |
23
+ echo "$(git describe --tags --abbrev=0 2>/dev/null || echo '')"
24
+ echo "previous_tag=$(git describe --tags --abbrev=0 2>/dev/null || echo '')" >> $GITHUB_ENV
25
- name: Build Release (tag, release)
26
id: create_tag
27
uses: jaywcjlove/create-tag-action@main
0 commit comments