We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75e9113 commit efb0341Copy full SHA for efb0341
.github/workflows/tag-to-draft-release.yml
@@ -18,13 +18,14 @@ jobs:
18
- uses: actions/checkout@v2
19
with:
20
submodules: true
21
+ fetch-depth: 0
22
- uses: actions/setup-python@v2
23
24
python-version: '3.x'
25
- name: Set GIT tag name
26
run: |
27
# Sets an environment variable used in the next steps
- echo "::set-env name=TRAVIS_TAG::$(git describe --exact-match --tags)"
28
+ echo "TRAVIS_TAG=$(git describe --exact-match --tags)" >> $GITHUB_ENV
29
- name: Build package JSON
30
env:
31
TRAVIS_BUILD_DIR: ${{ github.workspace }}
0 commit comments