From 763173d476168f4265fe85627a53d38cbf02aa8c Mon Sep 17 00:00:00 2001 From: franzmueller Date: Tue, 26 Sep 2023 07:57:58 +0200 Subject: [PATCH] add Modfile --- .github/workflows/tag.yml | 47 +++++++++++++++++++++++++ module/Modfile.yaml | 73 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 120 insertions(+) create mode 100644 .github/workflows/tag.yml create mode 100644 module/Modfile.yaml diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml new file mode 100644 index 0000000..ae10b6b --- /dev/null +++ b/.github/workflows/tag.yml @@ -0,0 +1,47 @@ +name: 'Tagged Docker Image' + +on: + push: + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' + +jobs: + multi: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Bump version and push tag + id: tag_version + uses: mathieudutour/github-tag-action@v6.1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + custom_tag: module/${{ github.ref_name }} + tag_prefix: "" + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.CR_PAT }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - name: Build and push + uses: docker/build-push-action@v2 + with: + context: . + file: ./Dockerfile + platforms: linux/amd64,linux/arm64 + push: true + tags: | + smartenergyplatform/mgw-kasa-dc:latest + smartenergyplatform/mgw-kasa-dc:${{ github.ref_name }} + ghcr.io/senergy-platform/mgw-kasa-dc:latest + ghcr.io/senergy-platform/mgw-kasa-dc:${{ github.ref_name }} diff --git a/module/Modfile.yaml b/module/Modfile.yaml new file mode 100644 index 0000000..98717ca --- /dev/null +++ b/module/Modfile.yaml @@ -0,0 +1,73 @@ +modfileVersion: "v1" +id: github.com/SENERGY-Platform/mgw-kasa-dc/module +name: Kasa Device-Connector +version: v0.0.1 +type: device-connector +deploymentType: single +license: "Apache License 2.0" +dependencies: + github.com/SENERGY-Platform/mgw-mqtt-broker: + version: