2022-01-02 15:26:39 +01:00
|
|
|
name: cd
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
2023-01-02 17:10:11 +01:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2022-01-02 15:26:39 +01:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
2023-01-02 17:10:11 +01:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2022-01-02 15:26:39 +01:00
|
|
|
-
|
|
|
|
name: Login to DockerHub
|
2023-01-02 17:10:11 +01:00
|
|
|
uses: docker/login-action@v2
|
2022-01-02 15:26:39 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
2023-01-02 17:10:11 +01:00
|
|
|
uses: docker/build-push-action@v3
|
2022-01-02 15:26:39 +01:00
|
|
|
with:
|
|
|
|
push: true
|
2022-01-04 11:04:58 +01:00
|
|
|
tags: plumeorg/plume:latest
|