mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 08:14:45 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
name: Generate Source Tarball
|
|
|
|
# Trigger whenever a release is created
|
|
on:
|
|
release:
|
|
types:
|
|
- created
|
|
push:
|
|
tags:
|
|
- "v*.*"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Archive
|
|
id: archive
|
|
run: |
|
|
VERSION=$GITHUB_REF_NAME
|
|
test -z "$VERSION" && VERSION=${{ github.event.release.tag_name }}
|
|
VERSION=$(printf "%s\n" "$VERSION" | sed 's/^v//')
|
|
PKGNAME=ppsspp-$VERSION
|
|
mkdir -p /tmp/$PKGNAME
|
|
mv * /tmp/$PKGNAME
|
|
mv /tmp/$PKGNAME .
|
|
find $PKGNAME/ffmpeg -name '*.a' -delete || true
|
|
find $PKGNAME/ffmpeg -name '*.lib' -delete || true
|
|
find $PKGNAME/ext -name '*.dylib' -delete || true
|
|
find $PKGNAME/ext -name '*.lib' -delete || true
|
|
find $PKGNAME/ext -name '*.so.*' -delete || true
|
|
rm -rf $PKGNAME/ext/rapidjson/thirdparty/gtest || true
|
|
sed -i "s;unknown;${VERSION};" $PKGNAME/git-version.cmake || true
|
|
TARBALL=$PKGNAME.tar.xz
|
|
tar cJf $TARBALL $PKGNAME
|
|
echo "tarball=$TARBALL" >> $GITHUB_OUTPUT
|
|
|
|
- name: Upload tarball
|
|
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
|
|
with:
|
|
files: ${{ steps.archive.outputs.tarball }}
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|