From af0198bfdf4eb1207c20834a133d6b1156aaa4a8 Mon Sep 17 00:00:00 2001 From: icex2 Date: Sun, 15 Aug 2021 12:34:22 +0200 Subject: [PATCH] wip --- .github/workflows/build.yaml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index cc0813d..81dfb15 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,5 +1,5 @@ # Regarding build steps, this is a copy of the Dockerfile and should be kept in-sync -name: Build pumptools +name: "Build pumptools" on: push: @@ -8,6 +8,7 @@ on: release: types: - created + workflow_dispatch: # allows you to trigger manually jobs: Explore-GitHub-Actions: @@ -26,13 +27,22 @@ jobs: - run: echo "🍏 This job's status is ${{ job.status }}." build: - runs-on: ubuntu-20.04 + runs-on: "ubuntu-20.04" steps: - - uses: actions/checkout@v2 - - name: Install docker + - name: "Checkout repository" + uses: "actions/checkout@v2" + + - name: "Show workspace" + run: | + pwd + ls -lah + + - name: "Install docker" run: apt-get update && apt-get install docker-ce docker-ce-cli containerd.io - - name: Build + + - name: "Build" run: make build-docker + # - name: "Install prerequisites" # run: | # dpkg --add-architecture i386