Skip to content

Commit

Permalink
Create a github action to build the image
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkopf authored Jun 20, 2023
1 parent 1a61862 commit cfc4249
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Build Suteki-chan Docker image
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ${GITHUB_REPOSITORY}:${GITHUB_REF} --tag ${GITHUB_REPOSITORY}:latest

0 comments on commit cfc4249

Please sign in to comment.