materialgram: Update v4.15.1.2 #6
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: Build Package | |
on: | |
push: | |
branches: | |
- main | |
env: | |
PAT: ${{secrets.PAT}} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:latest | |
steps: | |
- name: Update system and install dependencies | |
run: | | |
pacman-key --init | |
pacman-key --populate archlinux | |
pacman -Syu --noconfirm --quiet | |
pacman -S base-devel git sudo github-cli --noconfirm --quiet | |
- name: Build package | |
run: | | |
useradd -m builder | |
echo "builder ALL=(ALL) NOPASSWD: ALL" | tee -a /etc/sudoers | |
su builder -c "git clone https://github.com/materialgram/materialgram-bin /home/builder/build && cd /home/builder/build && makepkg --syncdeps --noconfirm --needed" | |
- name: Set filename as variable | |
id: set-filename | |
run: echo "::set-output name=filename::$(basename /home/builder/build/*.zst)" | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.set-filename.outputs.filename }} | |
path: /home/builder/build/*.zst | |
- name: UPLOAD TO GITHUB RELEASES | |
run: | | |
echo $PAT | gh auth login --with-token | |
export VERSION=$(cat /home/builder/build/PKGBUILD | grep 'pkgver=' | cut -d'=' -f2) | |
export FILE_NAME=${{ steps.set-filename.outputs.filename }} | |
gh release create ${VERSION} /home/builder/build/${FILE_NAME} --repo materialgram/materialgram-bin | |