Skip to content

Commit

Permalink
ci(_package): mark nightly build as preview
Browse files Browse the repository at this point in the history
  • Loading branch information
nhedger committed Nov 8, 2023
1 parent 11fe76a commit 17931e9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ jobs:
tempfile=$(mktemp)
jq '.displayName = "Biome (nightly)"' package.json > $tempfile
mv $tempfile package.json
- name: Mark nightly build as preview in package.json
if: ${{ github.event.inputs.nightly }}
run: |
tempfile=$(mktemp)
jq '.preview = true' package.json > $tempfile
mv $tempfile package.json
- name: Generate nightly version identifier (nightly)
if: ${{ github.event.inputs.nightly }}
Expand Down

0 comments on commit 17931e9

Please sign in to comment.