diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-07-13 13:46:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 13:46:03 -0700 |
commit | c11c45a661addf377ac5f4773ba39f5ef66ec155 (patch) | |
tree | 204cd561549dd6424d7e07c88b042e3bce62d608 /.github/workflows/release.yml | |
parent | d57821b5fa8b994bc4082f7565a072090ff288a1 (diff) | |
parent | 0eca982f8bc89bbac3ed4fee248fc53b7c4c0527 (diff) | |
download | homer-c11c45a661addf377ac5f4773ba39f5ef66ec155.tar.gz homer-c11c45a661addf377ac5f4773ba39f5ef66ec155.tar.zst homer-c11c45a661addf377ac5f4773ba39f5ef66ec155.zip |
Merge pull request #482 from bastienwirtz/vuejs-3
Vuejs 3
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 62c15a8..66bfb5b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml | |||
@@ -10,15 +10,20 @@ jobs: | |||
10 | name: Upload Release Asset | 10 | name: Upload Release Asset |
11 | runs-on: ubuntu-latest | 11 | runs-on: ubuntu-latest |
12 | steps: | 12 | steps: |
13 | - uses: actions/checkout@v3 | 13 | - |
14 | - name: Build project | 14 | name: Checkout |
15 | uses: actions/checkout@v3 | ||
16 | - | ||
17 | name: Build project | ||
15 | run: | | 18 | run: | |
16 | yarn install | 19 | yarn install |
17 | yarn build | 20 | yarn build |
18 | - name: Create artifact | 21 | - |
22 | name: Create artifact | ||
19 | working-directory: "dist" | 23 | working-directory: "dist" |
20 | run: zip -r ../homer.zip ./* | 24 | run: zip -r ../homer.zip ./* |
21 | - name: Create Release | 25 | - |
26 | name: Create Release | ||
22 | id: create_release | 27 | id: create_release |
23 | uses: softprops/action-gh-release@v1 | 28 | uses: softprops/action-gh-release@v1 |
24 | with: | 29 | with: |