Skip to content

Commit 6ee5068

Browse files
committed
workflows
1 parent f913e38 commit 6ee5068

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
with:
2828
fetch-depth: 1
2929
clean: false
30+
ref: master
3031

3132
- name: Setup Bun
3233
uses: oven-sh/setup-bun@v2

.github/workflows/write-release-notes.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,13 @@ jobs:
3232
id: package-version
3333
run: |
3434
version=${{ inputs.daisyuiversion }}
35-
echo version=$version >> $GITHUB_OUTPUT
35+
echo "version=$version" >> $GITHUB_OUTPUT
3636
if [[ $version =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
37-
echo $version is a stable version
38-
echo is-stable=true >> $GITHUB_OUTPUT
37+
echo "$version is a stable version"
38+
echo "is-stable=true" >> $GITHUB_OUTPUT
3939
else
40-
echo $version is not a stable version
40+
echo "$version is not a stable version"
41+
echo "is-stable=false" >> $GITHUB_OUTPUT
4142
fi
4243
4344
- name: Add release notes to GitHub

0 commit comments

Comments
 (0)