-
Notifications
You must be signed in to change notification settings - Fork 3
38 lines (31 loc) · 952 Bytes
/
deploy.yaml
File metadata and controls
38 lines (31 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Release latest build
on:
workflow_dispatch:
push:
branches: [main, ci/**]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: npm i
- name: Build and Bundle
run: npm run build && npm run bundle
- name: Create tar.gz
run: tar -zcvf fluid.waveform.tar.gz max-package/
- uses: dev-drprasad/delete-tag-and-release@v0.2.1
with:
delete_release: true
tag_name: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: package and upload
uses: softprops/action-gh-release@v1
with:
name: Fluid Waveform Build
body: "This is a release build of the FluCoMa Max package. The build hash is ${{ github.sha }}"
files: fluid.waveform.tar.gz
prerelease: false
tag_name: build
draft: false