Twintail Launcher v1.1.14 #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: update-aur-bin.yml | |
| on: | |
| release: | |
| types: [published] | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: "Version tag (e.g. ttl-v0.6.9)" | |
| required: true | |
| jobs: | |
| update-aur-package: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set version | |
| run: | | |
| if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then | |
| echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV | |
| else | |
| echo "VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV | |
| fi | |
| - name: Generate PKGBUILD | |
| env: | |
| VERSION: ${{ env.VERSION }} | |
| run: | | |
| PKGV="${VERSION#ttl-v}" | |
| echo "VERSION is: $VERSION" | |
| echo "PKGVER is: $PKGV" | |
| # Calculate checksum | |
| x86_64_url="https://github.com/TwintailTeam/TwintailLauncher/releases/download/$VERSION/twintaillauncher_${PKGV}_amd64.deb" | |
| echo "Downloading and calculating checksum..." | |
| curl -L "$x86_64_url" -o twintaillauncher-${PKGV}.deb | |
| x86_64_sum=$(sha256sum twintaillauncher-${PKGV}.deb | cut -d' ' -f1) | |
| cat > PKGBUILD << EOF | |
| pkgname=twintaillauncher-bin | |
| _pkgname="\${pkgname%-bin}" | |
| pkgver=${PKGV} | |
| pkgrel=1 | |
| pkgdesc="A multi-platform launcher for your anime games" | |
| arch=('x86_64') | |
| url="https://github.com/TwintailTeam/TwintailLauncher" | |
| license=('GPL-3.0-only') | |
| depends=('cairo' 'desktop-file-utils' 'gdk-pixbuf2' 'glib2' 'gtk3' 'hicolor-icon-theme' 'pango' 'webkit2gtk-4.1' 'libappindicator-gtk3' 'libayatana-appindicator' 'mangohud' 'gamemode') | |
| options=('!debug') | |
| provides=("${pkgname}") | |
| conflicts=("twintaillauncher-git" "twintaillauncher") | |
| source=("\${_pkgname}-\${pkgver}.deb::\${url}/releases/download/ttl-v\${pkgver}/twintaillauncher_\${pkgver}_amd64.deb") | |
| sha256sums=('$x86_64_sum') | |
| build() { | |
| bsdtar -x -f data.tar.gz | |
| } | |
| package() { | |
| install -Dm755 usr/bin/twintaillauncher -t "\$pkgdir/usr/bin" | |
| install -Dm755 usr/lib/twintaillauncher/resources/hpatchz -t "\$pkgdir/usr/lib/twintaillauncher/resources" | |
| install -Dm755 usr/lib/twintaillauncher/resources/reaper -t "\$pkgdir/usr/lib/twintaillauncher/resources" | |
| install -Dm644 usr/lib/twintaillauncher/resources/hkrpg_patch.dll -t "\$pkgdir/usr/lib/twintaillauncher/resources" | |
| install -Dm644 usr/share/icons/hicolor/32x32/apps/twintaillauncher.png "\$pkgdir/usr/share/icons/hicolor/32x32/apps/\$_pkgname.png" | |
| install -Dm644 usr/share/icons/hicolor/128x128/apps/twintaillauncher.png "\$pkgdir/usr/share/icons/hicolor/128x128/apps/\$_pkgname.png" | |
| install -Dm644 usr/share/icons/hicolor/256x256@2/apps/twintaillauncher.png "\$pkgdir/usr/share/icons/hicolor/256x256@2/apps/\$_pkgname.png" | |
| install -Dm644 usr/share/applications/twintaillauncher.desktop -t "\$pkgdir/usr/share/applications" | |
| } | |
| EOF | |
| - name: Test PKGBUILD | |
| uses: KSXGitHub/github-actions-deploy-aur@v4.1.1 | |
| with: | |
| pkgname: twintaillauncher-bin | |
| pkgbuild: ./PKGBUILD | |
| test: true | |
| commit_username: ${{ secrets.GIT_USER }} | |
| commit_email: ${{ secrets.GIT_EMAIL }} | |
| ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | |
| commit_message: "Update to version ${{ env.VERSION }}" | |
| ssh_keyscan_types: rsa,ecdsa,ed25519 | |
| - name: Publish AUR package | |
| if: success() | |
| uses: KSXGitHub/github-actions-deploy-aur@v4.1.1 | |
| with: | |
| pkgname: twintaillauncher-bin | |
| pkgbuild: ./PKGBUILD | |
| commit_username: ${{ secrets.GIT_USER }} | |
| commit_email: ${{ secrets.GIT_EMAIL }} | |
| ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | |
| commit_message: "Update to version ${{ env.VERSION }}" | |
| ssh_keyscan_types: rsa,ecdsa,ed25519 |