materialgram: Update v4.15.1.2 #9
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 | |
run: echo "FILENAME=$(basename /home/builder/build/*.zst)" >> $GITHUB_ENV | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.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) | |
git config --global user.email "[email protected]" | |
git config --global user.name "Omansh Krishn" | |
git config --global --add safe.directory /home/builder/build | |
git -C '/home/builder/build' tag -a ${VERSION} | |
git -C '/home/builder/build' push "https://omansh-krishn:${PAT}@github.com/materialgram/materialgram-bin.git" ${VERSION} | |
gh release create ${VERSION} /home/builder/build/${{ env.FILENAME }} --repo materialgram/materialgram-bin | |