about summary refs log tree commit diff
path: root/action.yml
blob: 646102828d9f0590ef2a1db580103b5eddce2dff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
- name: Login to docker hub
  uses: actions-hub/docker/login@master
  env:
    DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
    DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

- name: Build :latest
  run: docker build -t aflplusplus:latest .

- name: Push to docker hub :latest
  uses: actions-hub/docker@master
  with:
    args: push aflplusplus:latest