Skip to content

Commit 683d80f

Browse files
committed
init
1 parent 0c7e5c6 commit 683d80f

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
on:
2+
push:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '0 0 * * *'
6+
jobs:
7+
build:
8+
uses: gardenlinux/package-build/.github/workflows/build.yml@main
9+
with:
10+
release: ${{ github.ref == 'refs/heads/main' }}

prepare_source

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
apt-get -y update && apt-get -yqq install dpkg-source-gitarchive pristine-lfs
2+
set -x
3+
git clone --recurse-submodules https://salsa.debian.org/cloud-team/google-guest-agent.git $dir/src
4+
cd $dir/src
5+
pristine-lfs checkout -o .. --auto
6+
mv ../google-guest-agent_20211116.00.orig.tar.xz ../orig.tar.xz
7+
xz -d ../orig.tar.xz
8+
git add .
9+
git config --global user.email "builder@gardenlinux.com"
10+
git config --global user.name "Garden Linux Builder"
11+
git commit -m foo

0 commit comments

Comments
 (0)