You've already forked .autoupdate
Compare commits
4 Commits
8d067256a0
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 1a027be9da | |||
| 48022a5477 | |||
| ce7698e524 | |||
| 0f24e788d6 |
@@ -17,6 +17,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- run: |
|
- run: |
|
||||||
|
apt-get --quiet update && apt-get --quiet --assume-yes install makepkg
|
||||||
git config --global user.name "${GIT_NAME}"
|
git config --global user.name "${GIT_NAME}"
|
||||||
git config --global user.email "${GIT_EMAIL}"
|
git config --global user.email "${GIT_EMAIL}"
|
||||||
git config --global credential.helper store
|
git config --global credential.helper store
|
||||||
@@ -24,7 +25,8 @@ jobs:
|
|||||||
git clone --depth 1 https://${GIT_HOST}/aur/deskflow-bin
|
git clone --depth 1 https://${GIT_HOST}/aur/deskflow-bin
|
||||||
cd deskflow-bin
|
cd deskflow-bin
|
||||||
source PKGBUILD
|
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||')
|
./push.sh $(curl -L -H "Accept: application/vnd.github+json" \
|
||||||
|
https://api.github.com/repos/${_srcmntr}/${_srcname}/releases/latest | jq -r ".tag_name" | sed 's|v||')
|
||||||
env:
|
env:
|
||||||
GIT_NAME: ${{ vars.GIT_NAME }}
|
GIT_NAME: ${{ vars.GIT_NAME }}
|
||||||
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
||||||
|
|||||||
34
.gitea/workflows/nethlink-appimage.yaml
Normal file
34
.gitea/workflows/nethlink-appimage.yaml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
name: Update nethlink-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: |
|
||||||
|
apt-get --quiet update && apt-get --quiet --assume-yes install makepkg
|
||||||
|
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}:${GIT_TOKEN}@${GIT_HOST}" > ~/.git-credentials
|
||||||
|
git clone --depth 1 https://${GIT_HOST}/aur/nethlink-appimage
|
||||||
|
cd nethlink-appimage
|
||||||
|
source PKGBUILD
|
||||||
|
./push.sh $(curl -L -H "Accept: application/vnd.github+json" \
|
||||||
|
https://api.github.com/repos/${_srcmntr}/${_srcname}/releases/latest | jq -r ".tag_name" | sed 's|v||')
|
||||||
|
env:
|
||||||
|
GIT_NAME: ${{ vars.GIT_NAME }}
|
||||||
|
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
||||||
|
GIT_HOST: ${{ vars.GIT_HOST }}
|
||||||
|
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
|
||||||
@@ -17,6 +17,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- run: |
|
- run: |
|
||||||
|
apt-get --quiet update && apt-get --quiet --assume-yes install makepkg
|
||||||
git config --global user.name "${GIT_NAME}"
|
git config --global user.name "${GIT_NAME}"
|
||||||
git config --global user.email "${GIT_EMAIL}"
|
git config --global user.email "${GIT_EMAIL}"
|
||||||
git config --global credential.helper store
|
git config --global credential.helper store
|
||||||
@@ -24,7 +25,8 @@ jobs:
|
|||||||
git clone --depth 1 https://${GIT_HOST}/aur/open-video-downloader-appimage
|
git clone --depth 1 https://${GIT_HOST}/aur/open-video-downloader-appimage
|
||||||
cd open-video-downloader-appimage
|
cd open-video-downloader-appimage
|
||||||
source PKGBUILD
|
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|app-v||')
|
./push.sh $(curl -L -H "Accept: application/vnd.github+json" \
|
||||||
|
https://api.github.com/repos/${_srcmntr}/${_srcname}/releases/latest | jq -r ".tag_name" | sed 's|app-v||')
|
||||||
env:
|
env:
|
||||||
GIT_NAME: ${{ vars.GIT_NAME }}
|
GIT_NAME: ${{ vars.GIT_NAME }}
|
||||||
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- run: |
|
- run: |
|
||||||
|
apt-get --quiet update && apt-get --quiet --assume-yes install makepkg
|
||||||
git config --global user.name "${GIT_NAME}"
|
git config --global user.name "${GIT_NAME}"
|
||||||
git config --global user.email "${GIT_EMAIL}"
|
git config --global user.email "${GIT_EMAIL}"
|
||||||
git config --global credential.helper store
|
git config --global credential.helper store
|
||||||
@@ -24,7 +25,8 @@ jobs:
|
|||||||
git clone --depth 1 https://${GIT_HOST}/aur/open-video-downloader-bin
|
git clone --depth 1 https://${GIT_HOST}/aur/open-video-downloader-bin
|
||||||
cd open-video-downloader-bin
|
cd open-video-downloader-bin
|
||||||
source PKGBUILD
|
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|app-v||')
|
./push.sh $(curl -L -H "Accept: application/vnd.github+json" \
|
||||||
|
https://api.github.com/repos/${_srcmntr}/${_srcname}/releases/latest | jq -r ".tag_name" | sed 's|app-v||')
|
||||||
env:
|
env:
|
||||||
GIT_NAME: ${{ vars.GIT_NAME }}
|
GIT_NAME: ${{ vars.GIT_NAME }}
|
||||||
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
||||||
|
|||||||
34
.gitea/workflows/pman-helper.yaml
Normal file
34
.gitea/workflows/pman-helper.yaml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
name: Update pman-helper 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: |
|
||||||
|
apt-get --quiet update && apt-get --quiet --assume-yes install makepkg
|
||||||
|
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}:${GIT_TOKEN}@${GIT_HOST}" > ~/.git-credentials
|
||||||
|
git clone --depth 1 https://${GIT_HOST}/aur/pman-helper
|
||||||
|
cd pman-helper
|
||||||
|
source PKGBUILD
|
||||||
|
./push.sh $(curl -L -H "Accept: application/json" \
|
||||||
|
https://git.bjphoster.com/api/v1/repos/${_srcmntr}/${_srcname}/repo/tags | jq -r ".[].name" | sort -V | tail -n 1)
|
||||||
|
env:
|
||||||
|
GIT_NAME: ${{ vars.GIT_NAME }}
|
||||||
|
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
||||||
|
GIT_HOST: ${{ vars.GIT_HOST }}
|
||||||
|
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
|
||||||
@@ -17,6 +17,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- run: |
|
- run: |
|
||||||
|
apt-get --quiet update && apt-get --quiet --assume-yes install makepkg
|
||||||
git config --global user.name "${GIT_NAME}"
|
git config --global user.name "${GIT_NAME}"
|
||||||
git config --global user.email "${GIT_EMAIL}"
|
git config --global user.email "${GIT_EMAIL}"
|
||||||
git config --global credential.helper store
|
git config --global credential.helper store
|
||||||
@@ -24,7 +25,8 @@ jobs:
|
|||||||
git clone --depth 1 https://${GIT_HOST}/aur/reflex-appimage
|
git clone --depth 1 https://${GIT_HOST}/aur/reflex-appimage
|
||||||
cd reflex-appimage
|
cd reflex-appimage
|
||||||
source PKGBUILD
|
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||')
|
./push.sh $(curl -L -H "Accept: application/vnd.github+json" \
|
||||||
|
https://api.github.com/repos/${_srcmntr}/${_srcname}/releases/latest | jq -r ".tag_name" | sed 's|v||')
|
||||||
env:
|
env:
|
||||||
GIT_NAME: ${{ vars.GIT_NAME }}
|
GIT_NAME: ${{ vars.GIT_NAME }}
|
||||||
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
|
||||||
|
|||||||
Reference in New Issue
Block a user