calpine-os-linux/.github/workflows/docker.yml

30 lines
618 B
YAML
Raw Normal View History

2021-03-26 12:03:01 +07:00
# This is a basic workflow to help you get started with Actions
name: CI
on:
push:
branches:
2021-12-23 09:37:52 +07:00
- 'main'
2021-03-26 12:03:01 +07:00
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_SECRET }}
2021-03-26 12:12:30 +07:00
-
name: Checkout
uses: actions/checkout@v2
2021-03-26 12:03:01 +07:00
-
name: Build and Push from Makefile
2021-03-26 12:09:15 +07:00
run: |
2021-03-26 12:12:30 +07:00
make build