Skip to content

Commit

Permalink
See what happens when we build container
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Nov 22, 2024
1 parent d1ad225 commit ebd8758
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build_latest_container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build latest Container
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build image
run: |
cd docker
docker build -t ghcr.io/coleifer/sqlite-web:latest .
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Upload latest container to registry
run: docker push ghcr.io/coleifer/sqlite-web:latest

0 comments on commit ebd8758

Please sign in to comment.