aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-07-25 23:12:59 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-07-25 23:12:59 -0700
commit162c3f2d13f06af931bc1214185acf0690eb4b1f (patch)
tree8b5fa8049a0dcc1582a6d69e11ae23fe361f7bda
parente03cde7cd588ca4e12af06b7bd96bcb6e0f5623e (diff)
downloadbun-162c3f2d13f06af931bc1214185acf0690eb4b1f.tar.gz
bun-162c3f2d13f06af931bc1214185acf0690eb4b1f.tar.zst
bun-162c3f2d13f06af931bc1214185acf0690eb4b1f.zip
WIP fix workflow run
-rw-r--r--.github/workflows/bun.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/bun.yml b/.github/workflows/bun.yml
index 798202c5f..bea80839c 100644
--- a/.github/workflows/bun.yml
+++ b/.github/workflows/bun.yml
@@ -423,15 +423,16 @@ jobs:
- name: Release
id: release
uses: softprops/action-gh-release@v1
+ if: github.ref == "refs/heads/master"
with:
prerelease: true
generate_release_notes: true
body: "This is the canary release of Bun that corresponds to the commit [${{ github.sha }}]"
name: "Canary (${{github.sha}})"
tag_name: "canary"
- files:
- - ${{runner.temp}}/release/bun-${{matrix.tag}}.zip
- - ${{runner.temp}}/release/bun-profile-${{matrix.tag}}.zip
+ files: |
+ ${{runner.temp}}/release/bun-${{matrix.tag}}.zip
+ ${{runner.temp}}/release/bun-profile-${{matrix.tag}}.zip
- uses: actions/upload-artifact@v3
with:
name: bun-obj-${{matrix.tag}}