-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 982 Bytes
/
release-framework.yml
File metadata and controls
39 lines (33 loc) · 982 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
39
name: Release Framework
on:
push:
tags:
- 'fw-*'
permissions:
contents: write
jobs:
package-framework:
name: Package Framework
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Extract version from tag
id: version
run: |
VERSION="${GITHUB_REF_NAME#fw-}"
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
- name: Create distribution ZIP
run: |
mkdir -p dist-staging
cp -a dist/. dist-staging/
cd dist-staging
zip -r "../devtrail-fw-${{ steps.version.outputs.version }}.zip" .
cd ..
- name: Create GitHub Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create "${{ github.ref_name }}" \
--title "DevTrail Framework ${{ steps.version.outputs.version }}" \
--generate-notes \
"devtrail-fw-${{ steps.version.outputs.version }}.zip"