Skip to content

Security fixes (#196) #1

Security fixes (#196)

Security fixes (#196) #1

Workflow file for this run

on:
push:
branches:
- master
jobs:
docker:
name: Docker
runs-on: ubuntu-latest
if: github.repository == 'CrunchyData/pg_tileserv'
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: make build && make build-docker
- name: Docker Upload
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}
DOCKER_REPO: pramsey/pg_tileserv
run: |
echo $DOCKER_PASS | docker login -u $DOCKER_USER --password-stdin
docker push --all-tags $DOCKER_REPO