ActionsDockerContainers/.forgejo/workflows/build.yaml
SeaswimmerTheFsh 6291d4d20d
Some checks failed
Docker Build / Build GalacticFactory (push) Failing after 3s
Docker Build / Build GalaxyCogs (push) Failing after 5s
Docker Build / Build PyZipline (push) Successful in 4s
Docker Build / Build SeaCogs (push) Successful in 4s
formatting fix
2024-02-05 18:33:12 -05:00

94 lines
2.8 KiB
YAML

name: Docker Build
on:
push:
branches:
- main
manual:
jobs:
Build GalacticFactory:
runs-on: docker
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 Docker image
uses: actions/docker-build-push@v5
with:
context: .
file: ./GalacticFactory/Dockerfile
push: true
tags: www.coastalcommits.com/galacticfactory/documentation:latest
Build GalaxyCogs:
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: coastalcommits.com
username: SeaswimmerTheFsh
password: ${{ secrets.COASTALCOMMITSTOKEN }}
- name: Build and push Docker image
uses: actions/docker-build-push@v5
with:
context: .
file: ./GalaxyCogs/Dockerfile
push: true
tags: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-galaxycogs:latest
Build PyZipline:
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 Docker image
uses: actions/docker-build-push@v5
with:
context: .
file: ./PyZipline/Dockerfile
push: true
tags: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-pyzipline:latest
Build SeaCogs:
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 Docker image
uses: actions/docker-build-push@v5
with:
context: .
file: ./SeaCogs/Dockerfile
push: true
tags: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest