Skip to content

Commit

Permalink
temp: rebuild sources now
Browse files Browse the repository at this point in the history
  • Loading branch information
khos2ow committed Nov 24, 2024
1 parent e7a551a commit 819f1ca
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/rebuild-sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ on:
type: string
required: false
default: ""
push:
branches-ignore:
- main

jobs:
build:
Expand All @@ -70,6 +73,8 @@ jobs:
id: init
run: |
echo "package-build-path=${{ github.workspace }}/packages" >> $GITHUB_OUTPUT
echo "pull-from=/opt/archives/packages/" >> $GITHUB_OUTPUT
echo "push-to=/opt/archives/packages/" >> $GITHUB_OUTPUT
- name: Environment Setup
run: |
Expand Down Expand Up @@ -106,7 +111,7 @@ jobs:
--include="*.debian.tar.xz" \
--exclude="*/*/*_*/" \
--exclude="*/*/*/*" \
root@${{ secrets.KAMATERA_HOSTNAME2 }}:${{ github.event.inputs.pull-from }} \
root@${{ secrets.KAMATERA_HOSTNAME2 }}:${{ steps.init.outputs.pull-from }} \
"${{ steps.init.outputs.package-build-path }}"
- name: Rebuild Sources
Expand Down Expand Up @@ -140,5 +145,5 @@ jobs:
rsync \
-avzh \
${{ steps.init.outputs.package-build-path }}/*
root@${{ secrets.KAMATERA_HOSTNAME2 }}:${{ github.event.inputs.push-to }} && break || sleep 5
root@${{ secrets.KAMATERA_HOSTNAME2 }}:${{ steps.init.outputs.push-to }} && break || sleep 5
done

0 comments on commit 819f1ca

Please sign in to comment.