alaskartv-docker/.github/workflows/buildseer.yml

40 lines
1,020 B
YAML
Raw Normal View History

2024-12-19 03:06:35 +00:00
name: Build AlaskarSeer
on:
push:
paths:
- alaskarseer/version.txt
jobs:
build-alaskarseer:
2025-01-03 23:01:35 +00:00
runs-on: ubuntu-22.04
2025-01-03 23:00:30 +00:00
container:
image: ubuntu:latest
2024-12-19 03:06:35 +00:00
environment: Dockerhub
steps:
# Step 1: Check out the repository
- name: Checkout code
2025-01-03 23:00:30 +00:00
uses: actions/checkout@v3
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