ActionsDockerContainers/.forgejo/workflows/build.yaml

52 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-01-15 05:20:39 -05:00
Build SeaCogs:
2024-01-06 21:56:28 -05:00
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 }}
2024-01-15 05:20:39 -05:00
- name: Build and push Docker image
2024-01-06 21:56:28 -05:00
uses: actions/docker-build-push@v5
with:
context: .
file: ./SeaCogs/Dockerfile
push: true
tags: coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
2024-01-15 05:20:39 -05:00
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: 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: coastalcommits.com/seaswimmerthefsh/actionscontainers-pyzipline:latest