-
-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (31 loc) · 1.06 KB
/
package.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
name: 📦 Package
on:
workflow_call:
jobs:
package:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: sentry-godot-gdextension
path: artifact/
- name: Prepare artifact
shell: bash
run: |
# * Fix crashpad_handler permissions, workaround for https://github.com/actions/upload-artifact/issues/38
chmod +x artifact/addons/sentrysdk/bin/{linux,macos}/crashpad_handler
# * Create release archive
version=$(grep 'VERSION =' SConstruct | cut -d '"' -f 2)
git_short_sha=$(git rev-parse --short HEAD)
archive_file="sentry-godot-gdextension-${version}+${git_short_sha}.zip"
cd artifact/
mkdir ${GITHUB_WORKSPACE}/out/
zip -r ${GITHUB_WORKSPACE}/out/${archive_file} ./*
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{github.sha}}
path: out/*