Skip to content

Commit 5a63113

Browse files
committed
temp: add push trigger for testing
1 parent b2d7dca commit 5a63113

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/bun-compile.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010
description: 'npm package version (e.g. 0.17.0)'
1111
required: true
1212
type: string
13+
push:
14+
branches:
15+
- auggie-bun-compile-workflow
1316

1417
jobs:
1518
build:
@@ -33,7 +36,7 @@ jobs:
3336

3437
- name: Create entry point
3538
run: |
36-
echo 'await import("npm:@augmentcode/auggie@${{ inputs.version }}");' > augment.mjs
39+
echo 'await import("npm:@augmentcode/auggie@${{ inputs.version || '0.17.0-prerelease.14' }}");' > augment.mjs
3740
3841
- name: Compile binary
3942
run: bun build augment.mjs --compile --target=${{ matrix.target }} --outfile=${{ matrix.output }}
@@ -61,8 +64,8 @@ jobs:
6164
GH_TOKEN: ${{ github.token }}
6265
GH_REPO: ${{ github.repository }}
6366
run: |
64-
gh release create "v${{ inputs.version }}" \
65-
--title "v${{ inputs.version }}" \
67+
gh release create "v${{ inputs.version || '0.17.0-prerelease.14' }}" \
68+
--title "v${{ inputs.version || '0.17.0-prerelease.14' }}" \
6669
--generate-notes \
6770
artifacts/*
6871

0 commit comments

Comments
 (0)