From 41140df95076a1feab0a42089fea1cc209982432 Mon Sep 17 00:00:00 2001 From: nathanael-h <7300309+nathanael-h@users.noreply.github.com> Date: Mon, 18 Jul 2022 17:59:54 +0200 Subject: [PATCH] add github action wip... --- .github/workflows/main.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..4569ddb --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,36 @@ +# This is a basic workflow to help you get started with Actions + +name: Build yunohost rpi image + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "yunohost-buster" branch + push: + branches: [ "yunohost-bullseye" ] + pull_request: + branches: [ "yunohost-bullseye" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-20.04 + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + apt update + apt-get -y install coreutils quilt parted qemu-user-static debootstrap zerofree zip dosfstools libarchive-tools libcap2-bin grep rsync xz-utils file git curl bc qemu-utils kpartx gpg pigz + curl -fsSL https://get.docker.com -o get-docker.sh + sh get-docker.sh + ./build-docker.sh +