mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-06-30 04:27:30 +00:00
refactor: drop legacy 'nightly' tag fallback
Both goreleaser and goreleaser-pro now publish nightly releases as vX.Y.Z-<sha>-nightly, so the action no longer needs to special-case or fall back to the moving 'nightly' tag. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -56,12 +56,10 @@ describe('getRelease', () => {
|
||||
expect(release?.tag_name).not.toEqual('');
|
||||
});
|
||||
|
||||
it('resolves nightly to the legacy nightly tag for OSS GoReleaser', async () => {
|
||||
// No <version>-<sha>-nightly release exists in goreleaser/goreleaser yet,
|
||||
// so this should fall back to the legacy moving `nightly` tag.
|
||||
it('resolves nightly to a <version>-<sha>-nightly release for OSS GoReleaser', async () => {
|
||||
const release = await github.getRelease('goreleaser', 'nightly');
|
||||
expect(release).not.toBeNull();
|
||||
expect(release.tag_name).toEqual('nightly');
|
||||
expect(release.tag_name).toMatch(github.nightlyTagRegex);
|
||||
});
|
||||
|
||||
it('resolves nightly to a <version>-<sha>-nightly release for GoReleaser Pro', async () => {
|
||||
|
||||
Reference in New Issue
Block a user