ActionsDockerContainers/.forgejo/workflows/build.yaml
SeaswimmerTheFsh 3d5e1b3fa8
Some checks failed
Docker Build / Build and Push Images (push) Failing after 8s
oops lmao
2024-02-05 18:35:43 -05:00

50 lines
1.6 KiB
YAML

name: Docker Build
on:
push:
branches:
- main
manual:
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