commit ccd33cfbbd8e05d8917f1dc2caa580efdaa464b8 Author: Elia Date: Thu Jun 15 12:15:03 2023 +0200 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/build.yaml b/build.yaml new file mode 100644 index 0000000..ad7db57 --- /dev/null +++ b/build.yaml @@ -0,0 +1,26 @@ +name: "Build EchoIP" +on: + schedule: + - cron: '0 12 * * *' +jobs: + build: + name: "Build EchoIP" + runs-on: ubuntu-latest + steps: + - name: "Checkout" + uses: https://github.com/actions/checkout@v3 + repository: https://github.com/mpolden/echoip + - name: "Login to Private Container Registry" + uses: https://github.com/docker/login-action@v2 + with: + registry: git.ponz.io + username: ${{ gitea.repository_owner }} + password: ${{ secrets.REG_TOKEN }} + - name: Build and push + uses: https://github.com/docker/build-push-action@v4 + with: + context: . + platforms: linux/amd64 + push: true + tags: | + git.ponz.io/elia/echoip:latest