From fddac5d566bd28786d27230d3087e68de0d23080 Mon Sep 17 00:00:00 2001 From: dannc Date: Thu, 12 Mar 2020 17:27:14 +0700 Subject: [PATCH] Add CI on actions --- .github/workflows/continious-integration.yml | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/continious-integration.yml diff --git a/.github/workflows/continious-integration.yml b/.github/workflows/continious-integration.yml new file mode 100644 index 0000000..00bd4d8 --- /dev/null +++ b/.github/workflows/continious-integration.yml @@ -0,0 +1,22 @@ +name: continious integration + +on: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Build the Docker image + run: | + cd ./v7.2 + docker build --tag=local-composer:7.2 `pwd` + cd .. + + # - name: Build the Docker image 7.3 + # run: docker build --tag=local-composer:7.3 ./v7.3 + + # - name: Build the Docker image 7.4 + # run: docker build --tag=local-composer:7.2 ./v7.2