aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2024-03-11 09:54:09 +0100
committerBastien Wirtz <bastien.wirtz@gmail.com>2024-03-11 10:00:37 +0100
commitbcebb3e67ef546071d4a455ba4661d6a51152871 (patch)
treef88f3c15ee1f6c6c499837972fbdb5cbb4edda49 /.github/workflows/release.yml
parent5f5a508b6eae6596dd46c09e25dedbc42d433740 (diff)
downloadhomer-bcebb3e67ef546071d4a455ba4661d6a51152871.tar.gz
homer-bcebb3e67ef546071d4a455ba4661d6a51152871.tar.zst
homer-bcebb3e67ef546071d4a455ba4661d6a51152871.zip
Fix CI build
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index d554a5f..44a128d 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -12,11 +12,11 @@ jobs:
12 steps: 12 steps:
13 - 13 -
14 name: Checkout 14 name: Checkout
15 uses: actions/checkout@v3 15 uses: actions/checkout@v4
16 - 16 -
17 name: Build project 17 name: Build project
18 run: | 18 run: |
19 yarn install 19 yarn install --frozen-lockfile --non-interactive
20 yarn build 20 yarn build
21 - 21 -
22 name: Create artifact 22 name: Create artifact
@@ -25,7 +25,7 @@ jobs:
25 - 25 -
26 name: Create Release 26 name: Create Release
27 id: create_release 27 id: create_release
28 uses: softprops/action-gh-release@v1 28 uses: softprops/action-gh-release@v2
29 with: 29 with:
30 token: ${{ secrets.GITHUB_TOKEN }} 30 token: ${{ secrets.GITHUB_TOKEN }}
31 generate_release_notes: true 31 generate_release_notes: true