1
0
mirror of https://github.com/dcarrillo/docker-nginx.git synced 2025-03-15 01:25:25 +00:00

40 lines
761 B
YAML
Raw Normal View History

2019-12-15 17:54:03 +01:00
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2019-12-15 17:54:03 +01:00
2020-03-07 19:08:09 +01:00
- name: shellcheck
2020-07-11 12:34:12 +02:00
uses: azohra/shell-linter@v0.4.0
2020-03-07 19:08:09 +01:00
- name: hadolint
uses: brpaz/hadolint-action@master
2019-12-15 17:54:03 +01:00
- name: Build image
run: ./build.sh
- name: Run tests
run: ./tests/test.sh
deploy:
runs-on: ubuntu-latest
needs:
- tests
2019-12-15 17:54:03 +01:00
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
2019-12-15 17:54:03 +01:00
- name: Log in to dockerhub
run: echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
- name: Deploy image
run: ./build.sh --push --latest