2023-11-25 04:19:50 -05:00
|
|
|
|
|
|
|
|
|
name: Docker Build
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
2023-11-25 04:20:28 -05:00
|
|
|
|
- master
|
2023-11-25 04:19:50 -05:00
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
Build:
|
|
|
|
|
runs-on: docker
|
|
|
|
|
container: catthehacker/ubuntu:act-latest
|
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout code
|
2023-11-25 04:27:37 -05:00
|
|
|
|
uses: actions/checkout@v3
|
2023-11-25 04:25:54 -05:00
|
|
|
|
with:
|
2023-11-25 04:27:37 -05:00
|
|
|
|
token: ${{ secrets.REGISTRYTOKEN }}
|
2023-11-25 04:25:54 -05:00
|
|
|
|
- name: Login to CoastalCommits
|
|
|
|
|
uses: actions/docker-login@v3
|
|
|
|
|
with:
|
2023-11-25 04:27:37 -05:00
|
|
|
|
registry: coastalcommits.com
|
2023-11-25 04:25:54 -05:00
|
|
|
|
username: SeaswimmerTheFsh
|
2023-11-25 04:27:37 -05:00
|
|
|
|
password: ${{ secrets.REGISTRYTOKEN }}
|
2023-11-25 04:19:50 -05:00
|
|
|
|
- name: Build and push Docker image
|
2023-11-25 04:25:54 -05:00
|
|
|
|
uses: actions/docker-build-push@v5
|
2023-11-25 04:19:50 -05:00
|
|
|
|
with:
|
|
|
|
|
context: .
|
|
|
|
|
file: Dockerfile
|
|
|
|
|
push: true
|
2023-11-25 04:27:37 -05:00
|
|
|
|
tags: coastalcommits.com/seaswimmerthefsh/discordeventlog:latest
|