Skip to content

Commit 8260502

Browse files
committed
release?
1 parent 39d1067 commit 8260502

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
- name: Download all artifacts
128128
uses: actions/download-artifact@v4
129129
with:
130-
path: skia_sdk
130+
path: artifacts
131131

132132
- name: Generate release id
133133
run: ./genrelease.sh

scripts/genrelease.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@ echo "Build for commit https://github.com/google/skia/commit/$SKIA_COMMIT" > rel
88
RUN_NUMBER="${GITHUB_RUN_NUMBER:-local}"
99
echo "RELEASE_ID=sk_${SKIA_COMMIT}_${RUN_NUMBER}" >> $GITHUB_ENV
1010

11-
mkdir files
12-
tar -czf
11+
find artifacts
12+
mkdir files skia_sdk
13+
mv artifacts/*/* skia_sdk
14+
15+
tar -czf release/skia_sdk.tar.gz skia_sdk

0 commit comments

Comments
 (0)