diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..fb1627c --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,45 @@ +name: main + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + release: + types: + - published + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Prepare + id: prep + run: | + DOCKER_IMAGE=ghcr.io/gdatasoftwareag/external-dns-coredns-plugin + VERSION=edge + if [[ $GITHUB_REF == refs/tags/* ]]; then + VERSION=${GITHUB_REF#refs/tags/} + elif [[ $GITHUB_REF == refs/heads/* ]]; then + VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g') + elif [[ $GITHUB_REF == refs/pull/* ]]; then + VERSION=pr-${{ github.event.number }} + fi + TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:${VERSION}-${GITHUB_SHA::8}" + echo ::set-output name=version::${VERSION} + echo ::set-output name=tags::${TAGS} + echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ') + - name: Login to Github Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Push to GitHub Packages + uses: docker/build-push-action@v4 + with: + push: ${{ github.event_name == 'release' }} + tags: ${{ steps.prep.outputs.tags }} + labels: | + org.opencontainers.image.revision=${{ github.sha }} + org.opencontainers.image.created=${{ steps.prep.outputs.created }} diff --git a/Dockerfile b/Dockerfile index f115c90..ec11a75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,3 +10,9 @@ COPY --from=builder /code/external-dns-coredns-plugin/external-dns-coredns-plugi # replace with your desire device count CMD ["external-dns-coredns-plugin"] + +LABEL org.opencontainers.image.title="ExternalDNS CoreDNS plugin Docker Image" \ + org.opencontainers.image.description="external-dns-coredns-plugin" \ + org.opencontainers.image.url="https://github.com/GDATASoftwareAG/external-dns-coredns-plugin" \ + org.opencontainers.image.source="https://github.com/GDATASoftwareAG/external-dns-coredns-plugin" \ + org.opencontainers.image.license="MIT" \ No newline at end of file