ActionsDockerContainers/.forgejo/workflows/build.yaml

50 lines
1.5 KiB
YAML
Raw Normal View History

2024-01-06 21:56:28 -05:00
name: Docker Build
on:
push:
branches:
2024-01-07 06:21:34 -05:00
- main
manual:
2024-01-06 21:56:28 -05:00
jobs:
2024-02-05 18:34:57 -05:00
Build and Push Images:
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:
2024-02-05 18:30:14 -05:00
registry: www.coastalcommits.com
username: SeaswimmerTheFsh
password: ${{ secrets.COASTALCOMMITSTOKEN }}
2024-02-05 18:34:57 -05:00
- name: Build and push GalacticFactory image
uses: actions/docker-build-push@v5
with:
context: .
file: ./GalacticFactory/Dockerfile
push: true
2024-02-05 18:30:14 -05:00
tags: www.coastalcommits.com/galacticfactory/documentation:latest
2024-02-05 18:34:57 -05:00
- name: Build and push GalaxyCogs image
2024-01-06 21:56:28 -05:00
uses: actions/docker-build-push@v5
with:
context: .
file: ./GalaxyCogs/Dockerfile
2024-01-06 21:56:28 -05:00
push: true
2024-02-05 18:30:14 -05:00
tags: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-galaxycogs:latest
2024-02-05 18:34:57 -05:00
- name: Build and push PyZipline image
2024-01-15 05:20:39 -05:00
uses: actions/docker-build-push@v5
with:
context: .
file: ./PyZipline/Dockerfile
push: true
2024-02-05 18:30:14 -05:00
tags: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-pyzipline:latest
2024-02-05 18:34:57 -05:00
- name: Build and push SeaCogs image
2024-01-27 09:11:40 -05:00
uses: actions/docker-build-push@v5
with:
context: .
file: ./SeaCogs/Dockerfile
2024-01-27 09:11:40 -05:00
push: true
2024-02-05 18:30:14 -05:00
tags: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest