-
Notifications
You must be signed in to change notification settings - Fork 137
28 lines (22 loc) · 882 Bytes
/
docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Docker Build and Push
on:
schedule:
- cron: "0 0 * * 1" # Every Monday midnight
workflow_dispatch:
branches:
- master
jobs:
push_to_docker_hub:
if: github.repository == 'tsantalis/RefactoringMiner' # To ensure it doesn't get executed in the forks
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
run: echo "${{ secrets.DOCKER_TOKEN }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Build and Push Docker Image
run: docker buildx build --platform linux/amd64,linux/arm64 -f docker/Dockerfile -t tsantalis/refactoringminer:latest --push .