mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00

* Github Action build and push to dockerhub * CI updates docker description * Convert rst readme to markdown * Update CONTRIBUTORS * Revert "CI updates docker description" This reverts commit33e2e7b5c2
. * Revert "Convert rst readme to markdown" This reverts commitdc25f8dbe4
. * CI deploy on master branch * CI test image * Fix empty SESSION_COOKIE_SECURE * Dockerfile : sanitize ENV * entrypoint.sh : sort * docker-compose.yml * CI test with docker compose * CI reorganize * Default SESSION_COOKIE_SECURE to True * Add some comments for readability. Co-authored-by: Alexis Métaireau <alexis@notmyidea.org>
66 lines
1.7 KiB
YAML
66 lines
1.7 KiB
YAML
name: CI to Docker Hub
|
|
|
|
on:
|
|
push:
|
|
tags: ['*']
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Test image # Checks we are able to run the container.
|
|
run: docker compose -f docker-compose.test.yml run sut
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
needs: test
|
|
if: github.event_name != 'pull_request'
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Cache Docker layers
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: /tmp/.buildx-cache
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
|
restore-keys: |
|
|
${{ runner.os }}-buildx-
|
|
|
|
- name: Extract metadata for Docker
|
|
id: meta
|
|
uses: docker/metadata-action@v3
|
|
with:
|
|
images: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPOSITORY }}
|
|
|
|
- uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
id: docker_build
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: ./
|
|
file: ./Dockerfile
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
push: true
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
|
|
|
- name: Image digest
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|