Skip to content

Catch permission errors (#25) #19

Catch permission errors (#25)

Catch permission errors (#25) #19

Workflow file for this run

name: build
on:
push:
branches:
- master
paths:
- 'geoip2influx/**'
- 'tests/**'
- 'run.py'
- 'requirements.txt'
- 'Dockerfile'
- 'root/**'
jobs:
push_to_ghcr_io:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_PAT }}
- name: build&push
run: |
docker build . --tag ghcr.io/gilbn/geoip2influx
docker push ghcr.io/gilbn/geoip2influx