SeaswimmerTheFsh
e498f090d4
All checks were successful
Docker Build / Build and Push Images (push) Successful in 5m39s
50 lines
1.6 KiB
YAML
50 lines
1.6 KiB
YAML
name: Docker Build
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
Build and Push Images:
|
|
runs-on: docker
|
|
container: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.COASTALCOMMITSTOKEN }}
|
|
- name: Login to CoastalCommits
|
|
uses: actions/docker-login@v3
|
|
with:
|
|
registry: www.coastalcommits.com
|
|
username: SeaswimmerTheFsh
|
|
password: ${{ secrets.COASTALCOMMITSTOKEN }}
|
|
- name: Build and push GalacticFactory image
|
|
uses: actions/docker-build-push@v5
|
|
with:
|
|
context: .
|
|
file: ./GalacticFactory/Dockerfile
|
|
push: true
|
|
tags: www.coastalcommits.com/galacticfactory/documentation:latest
|
|
- name: Build and push GalaxyCogs image
|
|
uses: actions/docker-build-push@v5
|
|
with:
|
|
context: .
|
|
file: ./GalaxyCogs/Dockerfile
|
|
push: true
|
|
tags: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-galaxycogs:latest
|
|
- name: Build and push PyZipline image
|
|
uses: actions/docker-build-push@v5
|
|
with:
|
|
context: .
|
|
file: ./PyZipline/Dockerfile
|
|
push: true
|
|
tags: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-pyzipline:latest
|
|
- name: Build and push SeaCogs image
|
|
uses: actions/docker-build-push@v5
|
|
with:
|
|
context: .
|
|
file: ./SeaCogs/Dockerfile
|
|
push: true
|
|
tags: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
|