2024-12-19 03:06:35 +00:00
|
|
|
name: Build AlaskarSeer
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- alaskarseer/version.txt
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-alaskarseer:
|
2025-01-04 02:56:26 +00:00
|
|
|
runs-on: host
|
2025-01-04 02:58:29 +00:00
|
|
|
container: catthehacker/ubuntu:act-latest
|
|
|
|
options: --privileged
|
2024-12-19 03:06:35 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
# Step 1: Check out the repository
|
|
|
|
- name: Checkout code
|
2025-01-04 02:36:19 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-12-19 03:06:35 +00:00
|
|
|
|
|
|
|
# Step 2: Set up Docker Buildx
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
|
|
|
|
# Step 3: Log in to Docker Hub
|
|
|
|
- name: Log in to Docker Hub
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
|
|
|
# Step 4: Build and push the alaskarseer image
|
|
|
|
- name: Build and Push alaskarseer Image
|
|
|
|
uses: docker/build-push-action@v6
|
|
|
|
with:
|
|
|
|
context: alaskarseer # Path to the build context
|
|
|
|
file: alaskarseer/Dockerfile # Path to the Dockerfile
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
nomadics/alaskarseer:latest
|