mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 10:23:02 +03:00
bbe9a97d05
* Switch go build target to 1.19 * Add make docker-run target for testing new images * Bump appveyor go version * Fix appveyor paths
36 lines
697 B
YAML
36 lines
697 B
YAML
name: docker
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
env:
|
|
GO_VERSION: 1.19
|
|
CGO_ENABLED: 0
|
|
IMAGE_REPOSITORY: sosedoff/pgweb
|
|
|
|
jobs:
|
|
docker-build:
|
|
name: docker images
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Configure docker build context
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Build docker images
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: .
|
|
push: false
|
|
tags: pgweb:latest
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v5,linux/arm/v7
|