Skip to content

Commit

Permalink
add build+push pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
David Smith committed Jan 3, 2024
1 parent c3822ce commit fdef9ec
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build image and push

on:
push:
branches: [main]
workflow_dispatch:

jobs:
build-and-push:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Template Dockerfile
run: python update.py
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Dockerhub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: codesmithtech/overpass-api:latest
platforms: linux/amd64,linux/arm64

0 comments on commit fdef9ec

Please sign in to comment.