ActionsDockerContainers/.forgejo/workflows/build.yaml
SeaswimmerTheFsh c805c95537
Some checks failed
Docker Build / Build SeaCogs (push) Successful in 5s
Docker Build / Build PyZipline (push) Failing after 11s
added dockerfile for PyZipline
2024-01-15 05:20:39 -05:00

51 lines
1.5 KiB
YAML

name: Docker Build
on:
push:
branches:
- main
manual:
jobs:
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: 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: coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs: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: 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