-
-
Notifications
You must be signed in to change notification settings - Fork 85
Closed
Description
The code says:
Lines 19 to 24 in b508e2e
if ((process.env.GITHUB_REF || '').startsWith('refs/tags')) { | |
const tag = (process.env.GITHUB_REF || '').split('/').pop(); | |
if (tag !== '' && tag !== undefined) { | |
return tag; | |
} | |
} |
If GITHUB_REF=refs/tags/release/0.1.0
, then the tag
will be 0.1.0
, but it should be release/0.1.0
Is the pop
done by purpose? Could it support release/0.1.0
and use 0.1.0
as the version?
Metadata
Metadata
Assignees
Labels
No labels