Skip to content

Commit

Permalink
Add simple CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadain committed Jul 5, 2024
1 parent 7de293f commit e302076
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: ci

on:
push:

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build image
run: |
./scripts/update.sh

0 comments on commit e302076

Please sign in to comment.