From 6dab191255cbfce93e4e377becd6548332561309 Mon Sep 17 00:00:00 2001 From: "Manuel J. Bernal" Date: Mon, 4 May 2020 15:23:48 +0200 Subject: [PATCH] First GitHub action test --- .github/workflows/push.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/push.yml diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 00000000..617fe915 --- /dev/null +++ b/.github/workflows/push.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + branches: [ feature-github-actions ] + pull_request: + branches: [ feature-github-actions ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build the Docker image + run: docker build wazuh/Dockerfile --tag wazuh:$(date +%s) \ No newline at end of file