mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-06-30 01:37:29 +00:00
feat: implement (optional) semver parsing of version (#213)
This commit is contained in:
@@ -3,7 +3,6 @@ import * as git from '../src/git';
|
||||
describe('git', () => {
|
||||
it('returns git tag', async () => {
|
||||
const tag: string = await git.getTag();
|
||||
console.log(tag);
|
||||
expect(tag).not.toEqual('');
|
||||
});
|
||||
it('checks if tag is dirty', async () => {
|
||||
@@ -11,7 +10,6 @@ describe('git', () => {
|
||||
});
|
||||
it('returns short commit', async () => {
|
||||
const commit: string = await git.getShortCommit();
|
||||
console.log(commit);
|
||||
expect(commit).not.toEqual('');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user