2
0
Fork 0
forked from mirror/zfs-utils
Signed-off-by: Wachtl Enterprises LLC <tyrolyean@escpe.net>
This commit is contained in:
Wachtl Enterprises LLC 2025-02-27 23:32:40 +01:00
parent 50e34ed7d4
commit fb083f8a70
2 changed files with 50 additions and 0 deletions
.forgejo/workflows

View file

@ -0,0 +1,24 @@
name: Auto merge upstream into this repo
on:
schedule:
- cron: "6 * * * *"
jobs:
build:
runs-on: ubuntu-latest
container:
image: node:latest
steps:
- name: pull latest
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: merge repos and push
run: |
git remote add upstream ${{ github.server_url }}/mirror/$(echo ${{ github.repository }} | sed 's/${{ github.repository_owner }}\///g').git
git config user.name schizoHAL
git config user.email wir+HAL@it-syndikat.org
git config pull.rebase true
git pull upstream master
git pull origin master
git push

View file

@ -0,0 +1,26 @@
name: Try to build package and push to mirror
on: [push, workflow_dispatch]
jobs:
build:
runs-on: docker
container:
image: ${{ vars.BUILD_IMAGE_RL }}
options: --ulimit nofile=1024:10240
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build package
uses: ${{ vars.PKG_ACTION_URL}}
with:
pkg: true
copy_all_sources: true
- name: Copy to mirror
run: |
echo "${{ secrets.SSH_ARCHMIRROR }}" > ~/.ssh/id_ed25519
echo "${{ vars.SIGNING_HOST }} ${{ vars.SIGNING_HOST_SSHKEY }}" >> ~/.ssh/known_hosts
chmod -R 700 ~/.ssh
sftp ${{ vars.SIGNING_USER }}@${{ vars.SIGNING_HOST }} <<EOF
cd /${{ vars.SIGNING_PATH }}
put *.pkg.tar.*
EOF