pyIPAM - Docker Plugin for IPAM written in Python
Jacek Kowalski
2026-03-11 6fb5c068282419ab4120bf11fa507f3edfeee7c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Release
 
on:
  push:
    tags:
      - 'v[0-9]+.*'
 
permissions:
  contents: read
 
jobs:
  deploy-to-docker-hub:
    name: Publish to Docker Hub
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v6
 
      - name: Login to Docker Hub
        uses: docker/login-action@v4
        with:
          username: ${{ github.actor }}
          password: ${{ secrets.DOCKER_PASSWORD }}
 
      - name: Prepare and push Docker plugin
        run: |
          export NAME="${{ github.actor }}/pyipam"
          export VERSIONS="latest ${GITHUB_REF/refs\/tags\//}"
          ./package.sh
          for VERSION in ${VERSIONS}; do
            docker plugin push "${{ github.actor }}/pyipam:${VERSION}"
          done