forked from elsa-workflows/elsa-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
174 lines (158 loc) · 6.17 KB
/
packages.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
name: Elsa Studio 3 Packages
on:
workflow_dispatch:
push:
branches:
- main
release:
types: [ prereleased, published ]
env:
nuget_feed_feedzio: 'https://f.feedz.io/elsa-workflows/elsa-3/nuget/index.json'
nuget_feed_nuget: 'https://api.nuget.org/v3/index.json'
npm_feed_feedzio: 'https://f.feedz.io/elsa-workflows/elsa-3/npm/'
npm_feed_npm: 'https://registry.npmjs.org/'
jobs:
build:
name: Build packages
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Verify commit exists in origin/main
run: |
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
git branch --remote --contains | grep origin/main
- name: Set VERSION variable
run: |
if [[ "${{ github.ref }}" == refs/tags/* && "${{ github.event_name }}" == "release" && "${{ github.event.action }}" == "published" ]]; then
TAG_NAME=${{ github.ref }} # e.g., refs/tags/3.0.0
TAG_NAME=${TAG_NAME#refs/tags/} # remove the refs/tags/ prefix
echo "VERSION=${TAG_NAME}" >> $GITHUB_ENV
else
echo "VERSION=3.0.4-preview.${{github.run_number}}" >> $GITHUB_ENV
fi
- name: Build workflow designer client assets
working-directory: ./src/modules/Elsa.Studio.Workflows.Designer/ClientLib
run: |
npm install --force
npm run build
- name: Build DOM interop client assets
working-directory: ./src/framework/Elsa.Studio.DomInterop/ClientLib
run: |
npm install --force
npm run build
- name: Build nuget packages
run: dotnet build Elsa.Studio.sln --configuration Release /p:Version=${VERSION}
- name: Test
run: dotnet test Elsa.Studio.sln --configuration Release /p:Version=${VERSION} --no-build
- name: Pack nuget packages
run: dotnet pack Elsa.Studio.sln --configuration Release /p:Version=${VERSION} /p:PackageOutputPath=$(pwd)/packages/nuget
- name: Publish Custom Elements packages # This generates client assets that we then package as an NPM package.
run: dotnet publish ./src/hosts/Elsa.Studio.Host.CustomElements --configuration Release -o ./packages/wasm /p:Version=${VERSION} -f net7.0
# Pack npm wasm package
- name: Pack elsa-studio-wasm npm package
run: |
cp ./packages/wasm/npm/package.json ./packages/wasm/wwwroot/package.json # Copy the package.json file from the NPM package to the wwwroot folder.
cd ./packages/wasm/wwwroot
npm version $VERSION --allow-same-version
npm pack
# Build npm react wrapper package
- name: Pack elsa-studio-wasm-react npm package
run: |
cd ./src/wrappers/wrappers/react-wrapper
npm version $VERSION --allow-same-version
npm run build
npm pack
# Upload nuget packages
- name: Upload nuget packages
uses: actions/upload-artifact@v3
with:
name: elsa-studio-nuget-packages
path: ./packages/nuget/*nupkg
# Upload npm wasm package
- name: Upload npm wasm package
uses: actions/upload-artifact@v3
with:
name: elsa-studio-npm-packages
path: ./packages/wasm/wwwroot/*.tgz
# Upload npm react wrapper package
- name: Upload npm react wrapper package
uses: actions/upload-artifact@v3
with:
name: elsa-studio-npm-packages
path: ./src/wrappers/wrappers/react-wrapper/*.tgz
publish_npm_preview_feedzio:
name: Publish npm packages to feedz.io
needs: build
runs-on: ubuntu-latest
timeout-minutes: 10
if: ${{ github.event_name == 'release' || github.event_name == 'push'}}
steps:
- name: Download Packages
uses: actions/download-artifact@v3
with:
name: elsa-studio-npm-packages
path: elsa-studio-npm-packages
- uses: actions/setup-node@v3
with:
node-version: 18.12.1
registry-url: ${{ env.npm_feed_feedzio }}
- run: |
for file in ./elsa-studio-npm-packages/*.tgz
do
npm publish "$file" --access public
done
env:
NODE_AUTH_TOKEN: ${{secrets.FEEDZ_API_KEY_BASE64}}
publish_npm_npm:
name: Publish npm packages to npmjs.com
needs: build
runs-on: ubuntu-latest
timeout-minutes: 10
if: ${{ github.event_name == 'release' && github.event.action == 'published' }}
steps:
- name: Download Packages
uses: actions/download-artifact@v3
with:
name: elsa-studio-npm-packages
path: elsa-studio-npm-packages
- uses: actions/setup-node@v3
with:
node-version: 18.12.1
registry-url: ${{ env.npm_feed_npm }}
- run: |
for file in ./elsa-studio-npm-packages/*.tgz
do
npm publish "$file" --access public
done
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_API_KEY }}
publish_nuget_preview_feedzio:
name: Publish nuget packages to feedz.io
needs: build
runs-on: ubuntu-latest
timeout-minutes: 10
if: ${{ github.event_name == 'release' || github.event_name == 'push'}}
steps:
- name: Download Packages
uses: actions/download-artifact@v3
with:
name: elsa-studio-nuget-packages
path: elsa-studio-nuget-packages
- name: Publish to feedz.io
run: dotnet nuget push ./elsa-studio-nuget-packages/*.nupkg -k ${{ secrets.FEEDZ_API_KEY }} -s ${{ env.nuget_feed_feedzio }} --skip-duplicate
publish_nuget_nuget:
name: Publish to nuget.org
needs: build
runs-on: ubuntu-latest
timeout-minutes: 10
if: ${{ github.event_name == 'release' && github.event.action == 'published' }}
steps:
- name: Download Packages
uses: actions/download-artifact@v3
with:
name: elsa-studio-nuget-packages
path: elsa-studio-nuget-packages
- name: Publish to nuget.org
run: dotnet nuget push ./elsa-studio-nuget-packages/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s ${{ env.nuget_feed_nuget }} --skip-duplicate