From 43fde90190c1f13c2d3873360f4fa1911a56ec12 Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Fri, 25 Apr 2025 10:35:23 +0200 Subject: [PATCH] Update .gitea/workflows/workflow.yml --- .gitea/workflows/workflow.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/.gitea/workflows/workflow.yml b/.gitea/workflows/workflow.yml index 0528786..ff9a1d4 100644 --- a/.gitea/workflows/workflow.yml +++ b/.gitea/workflows/workflow.yml @@ -5,38 +5,9 @@ on: - master jobs: - update: - name: Update from AUR - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Configure Git - run: | - git config user.email "sebastiaan.de.schaetzen+archlinux@gmail.com" - git config user.name "Sebastiaan de Schaetzen (automated)" - - - name: Add AUR repository - run: git remote add aur https://aur.archlinux.org/yay.git - - - name: Fetch AUR - run: git fetch aur - - - name: Merge latest changes - run: | - git merge aur/master - git status - - - name: Push changes (if any) - run: git push origin master - wake: name: Wake Runner runs-on: ubuntu-latest - needs: update steps: - name: Wakeup Runner run: | @@ -45,10 +16,8 @@ jobs: build: name: Build and Push runs-on: ubuntu-amd64 - needs: wake container: image: gitea.seeseepuff.be/archlinux/archlinux:latest - if: gitea.event_name == 'push' steps: - name: Checkout code uses: actions/checkout@v2