build: assemble updater 3.4 worker
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
name: Assemble Updater 3.4 Worker
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- feature/updater-3.4-lifecycle
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
concurrency:
|
||||
group: assemble-updater-34
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
assemble:
|
||||
if: ${{ github.actor != 'github-actions[bot]' }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Branch auschecken
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Worker bytegenau zusammensetzen
|
||||
shell: bash
|
||||
run: |
|
||||
mkdir -p scripts/updater
|
||||
cat .updater34/worker.part*.b64 | base64 --decode > scripts/updater/Vendoo.Updater.Worker34.ps1
|
||||
echo '00e62be18ea17a41a5472a085488a601cd9f226e6a33a57adfe0d47083b18791 scripts/updater/Vendoo.Updater.Worker34.ps1' | sha256sum --check --strict
|
||||
rm -rf .updater34
|
||||
rm -f .github/workflows/assemble-updater34.yml
|
||||
|
||||
- name: Zusammengesetzten Worker committen
|
||||
shell: bash
|
||||
run: |
|
||||
git config user.name 'vendoo-updater-build'
|
||||
git config user.email 'vendoo-updater-build@users.noreply.github.com'
|
||||
git add --all
|
||||
git commit -m 'feat: add production updater 3.4 worker'
|
||||
git push origin HEAD:feature/updater-3.4-lifecycle
|
||||
Reference in New Issue
Block a user