From 1f0aa808a541d03f0764c9ee48502c804d326c87 Mon Sep 17 00:00:00 2001 From: pajlada Date: Mon, 8 May 2023 19:15:38 +0200 Subject: [PATCH] Remove `push-aur` job (#4610) This never built the PR job, and doesn't handle pushing to AUR The new plan is to have a separate AUR-specific repo that handles events & rebuilding on dependency-change etc --- .github/workflows/push-aur.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/push-aur.yml diff --git a/.github/workflows/push-aur.yml b/.github/workflows/push-aur.yml deleted file mode 100644 index 4323e0987..000000000 --- a/.github/workflows/push-aur.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: Build on Arch Linux - -on: - push: - branches: - - master - -concurrency: - group: build-archlinux-${{ github.ref }} - cancel-in-progress: true - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Sync AUR package with current version - uses: pajlada/aur-sync-action@master - with: - package_name: chatterino2-git - commit_username: chatterino2-ci - commit_email: chatterino2-ci@pajlada.com - ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} - dry_run: true