1234567891011121314151617181920212223242526272829303132333435363738 |
- name: Build Base Image
- on:
- push:
- branches:
- - 'update_base_image**'
- jobs:
- build_base:
- name: Build Base
- runs-on: ubuntu-latest
- steps:
- -
- name: Checkout
- uses: actions/checkout@v3
- -
- name: Set up QEMU
- uses: docker/setup-qemu-action@v2
- -
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v2
- -
- name: Login to Docker Hub
- uses: docker/login-action@v2
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- -
- name: Get current date
- id: date
- run: echo "::set-output name=today::$(date +'%Y-%m-%d')"
- -
- name: Build and push
- uses: docker/build-push-action@v4
- with:
- context: .
- file: docker_compose_deploy/loonflow-base/Dockerfile
- platforms: linux/amd64
- push: true
- tags: blackholll/loonflow-base:latest,blackholll/loonflow-base:${{ steps.date.outputs.today }}
|