-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (43 loc) · 1.37 KB
/
publish-release.yml
File metadata and controls
52 lines (43 loc) · 1.37 KB
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
name: Build and attach artifacts on release
on:
release:
types: [published]
permissions:
contents: write
jobs:
build-and-attach:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js and pnpm
uses: pnpm/action-setup@v2
with:
node-version: '18'
# optional: pin pnpm-version: '8'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build --if-present
- name: Prepare artifact directory
run: |
set -e
mkdir -p artifacts
if [ -d "dist" ]; then
cp -r dist artifacts/
else
echo "Error: dist folder not found. Check your build output or build script." >&2
exit 1
fi
tar -czf artifacts/${{ github.ref_name }}-dist.tar.gz -C artifacts .
- name: Upload workflow artifact (keeps a copy in the run)
uses: actions/upload-artifact@v4
with:
name: build-${{ github.ref_name }}
path: artifacts/${{ github.ref_name }}-dist.tar.gz
- name: Attach artifact to GitHub Release
uses: softprops/action-gh-release@v1
with:
files: artifacts/${{ github.ref_name }}-dist.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}