DiscordEventLog/.forgejo/workflows/docker-build.yml

30 lines
737 B
YAML
Raw Normal View History


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