diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a4227a..0a2c0c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,10 +3,19 @@ name: CI on: [push, pull_request] jobs: - build: - + docker: runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Build image + run: docker build . --tag ${GITHUB_REPOSITORY,,} + + - name: Show image info + run: docker images + + build: + runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml deleted file mode 100644 index a2471a4..0000000 --- a/.github/workflows/docker.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Docker - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - - uses: actions/checkout@v1 - - - name: Build image - run: docker build . - - - name: Show image info - run: docker images diff --git a/README.md b/README.md index 36588bb..9d23215 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,5 @@ ![CI](https://github.com/RealOrangeOne/website/workflows/CI/badge.svg) ![Deploy](https://github.com/RealOrangeOne/website/workflows/Deploy/badge.svg) -![Docker](https://github.com/RealOrangeOne/website/workflows/Docker/badge.svg) Another website, really?