You've already forked .autoupdate
added deskflow-bin and reflex-appimage workflows
Some checks failed
Update reflex-appimage Package / update (push) Failing after 9s
Update open-video-downloader-bin Package / update (push) Failing after 5s
Update open-video-downloader-appimage Package / update (push) Failing after 6s
Update deskflow-bin Package / update (push) Failing after 6s
Some checks failed
Update reflex-appimage Package / update (push) Failing after 9s
Update open-video-downloader-bin Package / update (push) Failing after 5s
Update open-video-downloader-appimage Package / update (push) Failing after 6s
Update deskflow-bin Package / update (push) Failing after 6s
This commit is contained in:
32
.gitea/workflows/reflex-appimage.yaml
Normal file
32
.gitea/workflows/reflex-appimage.yaml
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
name: Update reflex-appimage Package
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
update:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- run: |
|
||||
git config --global user.name "${GIT_NAME}"
|
||||
git config --global user.email "${GIT_EMAIL}"
|
||||
git config --global credential.helper store
|
||||
echo "https://${GIT_EMAIL//@/%40}:${GITEA_TOKEN}@${GITEA_HOST}" > ~/.git-credentials
|
||||
git clone --depth 1 https://${GITEA_HOST}/aur/reflex-appimage
|
||||
cd reflex-appimage
|
||||
source PKGBUILD
|
||||
./push.sh $(curl -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/${_srcmntr}/${_srcname}/releases/latest | jq ".tag_name" | sed 's|"||g;s|v||')
|
||||
env:
|
||||
GIT_NAME: ${{ vars.GIT_NAME }}
|
||||
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
||||
GIT_HOST: ${{ vars.GIT_HOST }}
|
||||
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
|
||||
Reference in New Issue
Block a user