All checks were successful
ClarkeIS Build / Build-Docker-Image (push) Successful in 26s
21 lines
581 B
YAML
21 lines
581 B
YAML
name: ClarkeIS Build
|
|
run-name: building clarkeis.com
|
|
on: [push]
|
|
|
|
jobs:
|
|
Build-Docker-Image:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Pull repo
|
|
uses: actions/checkout@v4
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: swaous.asuscomm.com
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
- name: Build
|
|
run: |
|
|
docker build -t swaous.asuscomm.com/clarkeis.com:latest .
|
|
docker push swaous.asuscomm.com/clarkeis.com:latest
|