Skip to content

Commit

Permalink
Merge 2084c0a into 24801f4
Browse files Browse the repository at this point in the history
  • Loading branch information
jridgewell authored Feb 21, 2023
2 parents 24801f4 + 2084c0a commit 81167f1
Show file tree
Hide file tree
Showing 7 changed files with 208 additions and 49 deletions.
4 changes: 2 additions & 2 deletions .github/actions/turbopack-bump/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/actions/turbopack-bump/dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions .github/actions/turbopack-bump/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"private": true,
"version": "1.0.0",
"scripts": {
"build:index": "ncc build src/index.ts -o dist --source-map --minify",
"prepare": "npm run build:index"
"build": "ncc build src/index.ts -o dist --source-map --minify",
"prepare": "npm run build"
},
"dependencies": {
"@actions/core": "^1.10.0",
Expand Down
1 change: 1 addition & 0 deletions .github/actions/turbopack-bump/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ async function run() {

core.setOutput("new_tag", nextTag);
await createTag(octokit, nextTag, commitSha);
core.notice(`New tag is ${nextTag}`);

// TODO: generate real release notes
core.setOutput(
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/turbopack-nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ jobs:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Turbopack Nightly Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
prerelease: true
Loading

0 comments on commit 81167f1

Please sign in to comment.