We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d1067 commit 8260502Copy full SHA for 8260502
.github/workflows/build.yml
@@ -127,7 +127,7 @@ jobs:
127
- name: Download all artifacts
128
uses: actions/download-artifact@v4
129
with:
130
- path: skia_sdk
+ path: artifacts
131
132
- name: Generate release id
133
run: ./genrelease.sh
scripts/genrelease.sh
@@ -8,5 +8,8 @@ echo "Build for commit https://github.com/google/skia/commit/$SKIA_COMMIT" > rel
8
RUN_NUMBER="${GITHUB_RUN_NUMBER:-local}"
9
echo "RELEASE_ID=sk_${SKIA_COMMIT}_${RUN_NUMBER}" >> $GITHUB_ENV
10
11
-mkdir files
12
-tar -czf
+find artifacts
+mkdir files skia_sdk
13
+mv artifacts/*/* skia_sdk
14
+
15
+tar -czf release/skia_sdk.tar.gz skia_sdk
0 commit comments