Skip to content

Commit

Permalink
Add docker build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kateinoigakukun committed Jul 1, 2024
1 parent 2a6f34f commit 19afc44
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Docker Build

on:
workflow_dispatch:

jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: docker/build-push-action@v6
post-job:
runs-on: ubuntu-latest
needs: [docker]
steps:
- uses: actions/download-artifact@v4
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM scratch

0 comments on commit 19afc44

Please sign in to comment.