From 10d5987c31a3c2ed9e1d2c4d52b1ed29c855d0d9 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Sat, 6 Jun 2020 14:45:07 +0100 Subject: Create main.yml --- .github/workflows/main.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/main.yml (limited to '.github/workflows') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..cdb09b766 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,21 @@ +name: Containerization + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build_container: + runs-on: ubuntu-latest + steps: + - name: Check out repository + uses: actions/checkout@v2 + - name: Calculate docker image label + run: | + echo "::set-env name=docker-label::libgit2-$(git log -1 --pretty=format:"%h" azure-pipelines/docker)" + - name: Build image + run: | + docker build -t libgit2/xenial:${{ env.docker-label }} --build-arg BASE=ubuntu:xenial -f azure-pipelines/docker/xenial . + -- cgit v1.2.1