Skip to content

Commit

Permalink
Disable more dangerous stuff for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dschmidt committed Feb 6, 2023
1 parent 563d50d commit b756333
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -952,8 +952,7 @@ def build(ctx):
},
"steps": restoreBuildArtifactCache(ctx, "pnpm", ".pnpm-store") +
installPnpm() +
buildRelease(ctx) +
buildDockerImage(),
buildRelease(ctx),
"trigger": {
"ref": [
"refs/heads/master",
Expand Down Expand Up @@ -1876,7 +1875,7 @@ def buildRelease(ctx):
"name": "changelog",
"image": TOOLHIPPIE_CALENS,
"commands": [
"calens --version %s -o dist/CHANGELOG.md -t changelog/CHANGELOG-Release.tmpl" % ctx.build.ref.replace("refs/tags/v", "").split("-")[0],
# "calens --version %s -o dist/CHANGELOG.md -t changelog/CHANGELOG-Release.tmpl" % ctx.build.ref.replace("refs/tags/v", "").split("-")[0],
],
"when": {
"ref": [
Expand Down Expand Up @@ -2813,7 +2812,7 @@ def licenseCheck(ctx):
"ref": [
"refs/heads/master",
"refs/heads/stable-*",
"refs/tags/v*",
"refs/tags/**",
"refs/pull/**",
],
},
Expand Down Expand Up @@ -3017,7 +3016,7 @@ def genericCachePurge(flush_path):
"ref": [
"refs/heads/master",
"refs/heads/stable-*",
"refs/tags/v*",
"refs/tags/**",
"refs/pull/**",
],
"status": [
Expand Down

0 comments on commit b756333

Please sign in to comment.