Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechilds committed Aug 4, 2023
1 parent 598fc2e commit a00ce2f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/on-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build Docker image on tag

on: push
# push:
# tags:
# - '*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

- name: Setup Docker buildx
run: docker buildx create --use

- name: Build Docker images
run: docker buildx build --tag humanscript --platform linux/amd64,linux/arm64 .

0 comments on commit a00ce2f

Please sign in to comment.