add arch linux binary support #222
This file contains 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: "publish" | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
create-release: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
outputs: | |
release_id: ${{ steps.create-release.outputs.result }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: get version | |
run: echo "PACKAGE_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV | |
- name: create release | |
id: create-release | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const { data } = await github.rest.repos.createRelease({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
tag_name: `clippy-v${process.env.PACKAGE_VERSION}`, | |
name: `Clippy v${process.env.PACKAGE_VERSION}`, | |
body: 'Take a look at the assets to download and install this app.', | |
draft: true, | |
prerelease: false | |
}) | |
return data.id | |
build-tauri: | |
needs: create-release | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
- name: install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.20_amd64.deb | |
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.20_amd64.deb | |
sudo apt-get install -y openssl libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf libxcb-shape0-dev libxcb-xfixes0-dev libxdo-dev | |
- name: install frontend dependencies | |
run: yarn install | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
releaseId: ${{ needs.create-release.outputs.release_id }} | |
- name: create .env file | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
PACKAGE_NAME=$(node -p "require('./package.json').name") | |
PACKAGE_VERSION=$(node -p "require('./package.json').version") | |
FILE_NAME=$PACKAGE_NAME_$PACKAGE_VERSION.tar.zst | |
BINARY_PATH=./src-tauri/target/release/$PACKAGE_NAME | |
echo "PACKAGE_NAME=$PACKAGE_NAME" >> $GITHUB_ENV | |
echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV | |
echo "FILE_NAME=$FILE_NAME" >> $GITHUB_ENV | |
echo "BINARY_PATH=$BINARY_PATH" >> $GITHUB_ENV | |
- name: Create PKGBUILD | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
cat <<EOF > PKGBUILD | |
pkgname=${{ env.PACKAGE_NAME }} | |
pkgver=${{ env.PACKAGE_VERSION }} | |
pkgrel=1 | |
pkgdesc="Your package description" | |
arch=('x86_64') | |
license=('GPL') | |
source=("${{ env.BINARY_PATH }}") | |
sha256sums=('SKIP') | |
package() { | |
install -Dm755 "\$srcdir/$(basename ${{ env.BINARY_PATH }})" "\$pkgdir/usr/bin/${{ env.PACKAGE_NAME }}" | |
} | |
EOF | |
- name: Build binary with PKGBUILD | |
if: matrix.platform == 'ubuntu-latest' | |
uses: 2m/[email protected] | |
with: | |
debug: true | |
target: pkgbuild | |
pkgname: ${{ env.PACKAGE_NAME }} | |
- name: Upload Zstandard package to Release | |
if: matrix.platform == 'ubuntu-latest' | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./${{ env.PACKAGE_NAME }}-${{ env.PACKAGE_VERSION }}-x86_64.pkg.tar.zst | |
asset_name: ${{ env.PACKAGE_NAME }}-${{ env.PACKAGE_VERSION }}-x86_64.pkg.tar.zst | |
tag: ${{ github.ref }} | |
overwrite: true | |
publish-release: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
needs: [create-release, build-tauri] | |
steps: | |
- name: publish release | |
id: publish-release | |
uses: actions/github-script@v6 | |
env: | |
release_id: ${{ needs.create-release.outputs.release_id }} | |
with: | |
script: | | |
github.rest.repos.updateRelease({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
release_id: process.env.release_id, | |
draft: false, | |
prerelease: false | |
}) |