Skip to content

Commit

Permalink
Bump min tag to publish
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffposnick committed Feb 22, 2021
1 parent e103c29 commit 80be8b1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion gulp-tasks/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {

// This is used in the publish-bundle step to avoid doing anything
// with tags < v4.0.0.
MIN_RELEASE_TAG_TO_PUBLISH: 'v5.1.1',
MIN_RELEASE_TAG_TO_PUBLISH: 'v6.1.1',
GITHUB_OWNER: 'GoogleChrome',
GITHUB_REPO: 'workbox',

Expand Down
1 change: 0 additions & 1 deletion gulp-tasks/utils/github-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ module.exports = {
repo: constants.GITHUB_REPO,
});

// We only want tags that are v4.0.0 or above.
const tagsData = tagsResponse.data;
return tagsData.filter((tagData) => {
return semver.gte(tagData.name, constants.MIN_RELEASE_TAG_TO_PUBLISH);
Expand Down

0 comments on commit 80be8b1

Please sign in to comment.